| | |
| | | */ |
| | | List<CtUser> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 按条件查询实体总数 |
| | | * |
| | | * @param terms 查询条件集合 |
| | | */ |
| | | long countQueryCtUser(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 按条件查询实体分页结果集 |
| | | * @param page 分页对象 |
| | | * @param terms 查询条件集合 |
| | | * @return |
| | | */ |
| | | List<CtUser> pageQueryCtUser(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 根据部门和角色查询 |
| | | * @param deptIdList 部门编号 |
| | | * @param roleCode 角色代码 |
| | | * @return List<SelectTermDTO> |
| | | */ |
| | | List<CtUser> listUserByDeptRoleList(@Param("deptIdList") List<String> deptIdList, @Param("roleCode") String roleCode); |
| | | |
| | | } |