| | |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.entity.User; |
| | | import org.springblade.modules.system.node.TreeNode; |
| | | import org.springblade.modules.system.vo.UserInfoDetail; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | |
| | | import java.util.List; |
| | |
| | | /** |
| | | * 获取导出用户数据 |
| | | * |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | List<UserExcel> exportUser(@Param("ew") Wrapper<User> queryWrapper); |
| | | List<UserExcel> exportUser(@Param("obj") Map<String, Object> param); |
| | | |
| | | /** |
| | | * 通过 身份证号查询用户信息 |
| | |
| | | * @return |
| | | */ |
| | | UserVO getUserDetailById(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询未关联的保安员 |
| | | * @return |
| | | */ |
| | | List<User> getNotGlList(); |
| | | |
| | | UserInfoDetail getUserInfoDetail(@Param("id") String id); |
| | | |
| | | boolean batchAudit(@Param("ids") String ids, @Param("auditStatus") String auditStatus); |
| | | } |