| | |
| | | import org.springblade.modules.system.entity.UserInfo; |
| | | import org.springblade.modules.system.entity.UserOauth; |
| | | import org.springblade.modules.system.excel.QrCodeExcel; |
| | | import org.springblade.modules.system.excel.SecurityExcel; |
| | | import org.springblade.modules.system.excel.SecurityYyExcel; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.node.TreeNode; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | |
| | | * @param data |
| | | * @param isCovered |
| | | */ |
| | | void importSecurity(List<UserExcel> data, Boolean isCovered); |
| | | void importSecurity(List<SecurityExcel> data, Boolean isCovered, String deptId); |
| | | |
| | | /** |
| | | * 押运人员导入 |
| | | * @param data |
| | | * @param isCovered |
| | | * @param deptId |
| | | */ |
| | | void importSecurityYy(List<SecurityYyExcel> data, Boolean isCovered, String deptId); |
| | | |
| | | /** |
| | | * 根据保安员编码查询保安信息 |
| | |
| | | void importQrCode(List<QrCodeExcel> data, Boolean isCovered, String deptId); |
| | | |
| | | |
| | | /** |
| | | * 根据用户账户查询用户是否存在 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | Integer selectCountAccount(String account); |
| | | |
| | | /** |
| | | * 保安员信息导出 |
| | | * @param user |
| | | * @return |
| | | */ |
| | | List<SecurityExcel> exportSecurityInfo(UserVO user); |
| | | |
| | | /** |
| | | * 导入保安员test |
| | | * @param data |
| | | * @param isCovered |
| | | * @param deptId |
| | | */ |
| | | void importSecurityTest(List<SecurityExcel> data, Boolean isCovered, String deptId); |
| | | /** |
| | | * 查询押运人员编码不为null的保安信息 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectEquipent(); |
| | | } |