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 selectDeptUser(DeptUserReqeust deptUserReqeust); List selectByUserId(Long userId); List selectJoinDeptUser(DeptUserReqeust deptUserReqeust); boolean deleteByUser(Long userId); int deleteById(Integer id); int deleteByList(List ids); int insertBatch(List list); }