You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
522 B
Java
24 lines
522 B
Java
3 years ago
|
package com.glxp.api.service.auth;
|
||
3 years ago
|
|
||
3 years ago
|
import com.glxp.api.entity.auth.DeptUserEntity;
|
||
|
import com.glxp.api.req.auth.DeptUserReqeust;
|
||
|
import com.glxp.api.res.auth.DeptUserResponse;
|
||
3 years ago
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface DeptUserService {
|
||
|
|
||
|
|
||
|
List<DeptUserEntity> selectDeptUser(DeptUserReqeust deptUserReqeust);
|
||
|
|
||
|
List<DeptUserResponse> selectJoinDeptUser(DeptUserReqeust deptUserReqeust);
|
||
|
|
||
|
int deleteById(Integer id);
|
||
|
|
||
|
int deleteByList(List<Integer> ids);
|
||
|
|
||
|
int insertBatch(List<DeptUserEntity> list);
|
||
|
|
||
|
|
||
|
}
|