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.
udi-wms-java/src/main/java/com/glxp/api/service/auth/DeptUserService.java

33 lines
849 B
Java

3 years ago
package com.glxp.api.service.auth;
import com.baomidou.mybatisplus.extension.service.IService;
3 years ago
import com.glxp.api.entity.auth.DeptUserEntity;
import com.glxp.api.req.auth.FilterDeptUserReqeust;
3 years ago
import com.glxp.api.res.auth.DeptUserResponse;
import java.util.List;
public interface DeptUserService extends IService<DeptUserEntity> {
3 years ago
List<DeptUserEntity> selectDeptUser(FilterDeptUserReqeust filterDeptUserReqeust);
3 years ago
List<DeptUserResponse> selectByUserId(Long userId);
List<DeptUserResponse> selectByUserIdKey(Long userId);
List<DeptUserResponse> selectJoinDeptUser(FilterDeptUserReqeust filterDeptUserReqeust);
3 years ago
boolean delete(Long deptId, Long userId);
3 years ago
boolean deleteByUser(Long userId);
int deleteById(Integer id);
int deleteByList(List<Integer> ids);
int insertBatch(List<DeptUserEntity> list);
}