| | |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.entity.UserInfo; |
| | | import org.springblade.modules.system.entity.UserOauth; |
| | | import org.springblade.modules.system.excel.SecurityExcel; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.vo.UserDTO; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 服务类 |
| | |
| | | */ |
| | | UserVO platformDetail(User user); |
| | | void updateUser(String hold,String cardid); |
| | | |
| | | /** |
| | | * 自定义用户列表(只有保安员) |
| | | */ |
| | | IPage<UserVO> selectUserPageSecurity(IPage<UserVO> page, UserVO user); |
| | | |
| | | /** |
| | | * 查询所有未注销用户 |
| | | * @return |
| | | */ |
| | | List<User> getAllUserList(); |
| | | |
| | | /** |
| | | * 查询用户数据,未删除的,未审核的 |
| | | * @return |
| | | */ |
| | | List<User> getNotAuditAllUserList(); |
| | | |
| | | /** |
| | | * 自定义列表,... |
| | | * @param page |
| | | * @param user |
| | | * @return |
| | | */ |
| | | IPage<User> selectUserPages(IPage<User> page, User user); |
| | | |
| | | /** |
| | | * 根据保安员编码查询保安员信息 |
| | | * @param securityNumber |
| | | * @return |
| | | */ |
| | | UserVO getUserInfoBySecurityNumber(String securityNumber); |
| | | |
| | | /** |
| | | * 导出用户审查明细 |
| | | * @param user |
| | | * @return |
| | | */ |
| | | List<SecurityExcel> exportSecurity(UserVO user); |
| | | /** |
| | | * 查询押运人员编码不为null的保安信息 |
| | | * @return |
| | | */ |
| | | List selectPeo(UserVO user); |
| | | |
| | | /** |
| | | * 查询用户年龄 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | int getUserAge(long id); |
| | | |
| | | /** |
| | | * 查询保安证编号位数 |
| | | * @param pre |
| | | * @return |
| | | */ |
| | | Integer getSecurityPaperCount(String pre); |
| | | |
| | | /** |
| | | * 查询保安员信息 |
| | | * @param user |
| | | * @return |
| | | */ |
| | | UserDTO getSecurityInfoByIdCardNo(User user); |
| | | |
| | | /** |
| | | * 根据身份证号查询用户 |
| | | * @param candidateNo |
| | | * @return |
| | | */ |
| | | User getUserInfoByIdCardNo(String candidateNo); |
| | | |
| | | /** |
| | | * 查询当前保安信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | UserVO getUserAgeById(long id); |
| | | } |