| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.dispatcher.vo.DispatcherVO; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.node.TreeNode; |
| | |
| | | |
| | | List<Map<String, Object>> selectUser(); |
| | | |
| | | |
| | | /** |
| | | * 派遣人员 |
| | | * @param deptid |
| | | * @param jurisdiction |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getDispaterInfo(@Param("deptid")String deptid, |
| | | @Param("jurisdiction")String jurisdiction); |
| | | |
| | | /** |
| | | * 工作汇报人员 |
| | | * @param deptid |
| | | * @param jurisdiction |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getWorkReportInfo(@Param("type")String type, |
| | | @Param("deptid")String deptid, |
| | | @Param("jurisdiction")String jurisdiction); |
| | | |
| | | /** |
| | | * 工作汇报人员(向民警) |
| | | * @param deptid |
| | | * @param jurisdiction |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getWorkReportInfos(@Param("type")String type, |
| | | @Param("deptid")String deptid, |
| | | @Param("jurisdiction")String jurisdiction); |
| | | |
| | | /** |
| | | * 根据保安员编码查询保安信息 |
| | | * @param securityNumber 保安证编码 |
| | |
| | | * @return |
| | | */ |
| | | UserVO getUserDetails(@Param("user") User user); |
| | | |
| | | |
| | | DispatcherVO getDispatcherInfoByUserId(Long userId); |
| | | |
| | | /** |
| | | * 查询账号相同的用户数量 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | Integer selectCountAccount(@Param("account") String account); |
| | | } |