| | |
| | | import org.springblade.modules.system.excel.SecurityExcel; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.vo.UserDTO; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | import org.springframework.boot.autoconfigure.quartz.QuartzDataSource; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * Mapper 接口 |
| | |
| | | * @return |
| | | */ |
| | | List<SecurityExcel> exportSecurity(@Param("user") UserVO user); |
| | | /** |
| | | * 查询押运人员编码不为null的保安信息 |
| | | * @return |
| | | */ |
| | | List selectPeo(@Param("user") UserVO user); |
| | | |
| | | /** |
| | | * 查询当前部门名称及父级部门名称 |
| | | * @param deptId 部门名称 |
| | | * @return |
| | | */ |
| | | @SqlParser(filter = true) |
| | | List<String> getDeptName(@Param("deptId") String deptId); |
| | | |
| | | /** |
| | | * 查询用户年龄 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | int getUserAge(@Param("id") long id); |
| | | |
| | | /** |
| | | * 查询保安证编号位数 |
| | | * @param pre |
| | | * @return |
| | | */ |
| | | Integer getSecurityPaperCount(@Param("pre") String pre); |
| | | |
| | | /** |
| | | * 查询保安员信息 |
| | | * @param user |
| | | * @return |
| | | */ |
| | | UserDTO getSecurityInfoByIdCardNo(@Param("user")User user); |
| | | } |