| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.modules.auth.enums.UserEnum; |
| | |
| | | * @param tenantId |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPage(IPage<User> page, User user, Long deptId, String tenantId); |
| | | IPage<UserVO> selectUserPage(IPage<UserVO> page, User user, Long deptId, String tenantId); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @return |
| | | */ |
| | | User getUserInfoByIdCardNo(String idCardNo); |
| | | /** |
| | | * 自定义用户列表(只有保安员) |
| | | */ |
| | | IPage<User> selectUserPageSecurity(IPage<User> page, User user, Long deptId, String s); |
| | | |
| | | /** |
| | | * 自定义用户列表(只有保安员),根据保安员查 |
| | | */ |
| | | List<User> selectUserPageSecurityUnit(IPage<User> page, User user, Long deptId, String s); |
| | | } |