| | |
| | | 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 user 用户信息 |
| | | * @return |
| | | */ |
| | | @MapKey(value = "id") |
| | | @SqlParser(filter=true) |
| | | Map<Long, TreeNode> getSecurityApplyTree(@Param("user") UserVO user); |
| | | List<TreeNode> getSecurityApplyTree(@Param("user") UserVO user); |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | void updateLogout(@Param("list") List<String> userIds); |
| | | |
| | | /** |
| | | * 判断是否报名 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | User getUserIsApply(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 自定义查询详情信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | UserVO getUserDetailById(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询未关联的保安员 |
| | | * @return |
| | | */ |
| | | List<User> getNotGlList(); |
| | | |
| | | UserInfoDetail getUserInfoDetail(@Param("id") String id); |
| | | } |