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

29 lines
663 B
Java

package com.glxp.api.service.auth;
import com.glxp.api.entity.auth.DeptUserEntity;
import com.glxp.api.req.auth.DeptUserReqeust;
import com.glxp.api.res.auth.DeptUserResponse;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface DeptUserService {
List<DeptUserEntity> selectDeptUser(DeptUserReqeust deptUserReqeust);
List<DeptUserResponse> selectByUserId(Long userId);
List<DeptUserResponse> selectJoinDeptUser(DeptUserReqeust deptUserReqeust);
boolean deleteByUser(Long userId);
int deleteById(Integer id);
int deleteByList(List<Integer> ids);
int insertBatch(List<DeptUserEntity> list);
}