com.github.rexsheng.springboot.faster.system.dept.application.DeptService Maven / Gradle / Ivy
The newest version!
package com.github.rexsheng.springboot.faster.system.dept.application;
import com.github.rexsheng.springboot.faster.system.dept.application.dto.AddDeptRequest;
import com.github.rexsheng.springboot.faster.system.dept.application.dto.DeptDetailResponse;
import com.github.rexsheng.springboot.faster.system.dept.application.dto.QueryDeptRequest;
import com.github.rexsheng.springboot.faster.system.dept.application.dto.UpdateDeptRequest;
import java.util.List;
public interface DeptService {
void add(AddDeptRequest request);
List queryList(QueryDeptRequest request);
List queryWithParent(Integer id);
List queryWithChildren(Integer id);
DeptDetailResponse get(Integer id);
void update(UpdateDeptRequest request);
void updateStatus(List request);
void delete(List ids);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy