类的使用
plus.hiver.common.entity.Department
使用Department的程序包
-
plus.hiver.common.dao中Department的使用
返回变量类型为Department的类型的plus.hiver.common.dao中的方法修饰符和类型方法说明DepartmentDao.findByDeletedAndStatus(Integer deleted, Integer status) 获得全部部门DepartmentDao.findByDeletedAndStatusAndParentId(Integer deleted, Integer status, Long parentId) 根据父节点获得部门列表DepartmentDao.findByParentIdAndIdInOrderBySortOrder(Long parentId, List<Long> departmentIds) 通过父id获取 升序 数据权限DepartmentDao.findByParentIdAndStatusOrderBySortOrder(Long parentId, Integer status) 通过父id和状态获取 升序DepartmentDao.findByParentIdOrderBySortOrder(Long parentId) 通过父id获取 升序DepartmentDao.findByTitleLikeAndIdInOrderBySortOrder(String title, List<Long> departmentIds) 部门名模糊搜索 升序 数据权限DepartmentDao.findByTitleLikeOrderBySortOrder(String title) 部门名模糊搜索 升序 -
plus.hiver.common.service中Department的使用
返回变量类型为Department的类型的plus.hiver.common.service中的方法修饰符和类型方法说明DepartmentService.findByDeletedAndStatus(Integer deleted, Integer status) 获得全部部门DepartmentService.findByDeletedAndStatusAndParentId(Integer deleted, Integer status, Long parentId) 根据父节点获得部门列表DepartmentService.findByParentIdAndStatusOrderBySortOrder(Long parentId, Integer status) 通过父id和状态获取DepartmentService.findByParentIdOrderBySortOrder(Long parentId, Boolean openDataFilter) 通过父id获取 升序DepartmentService.findByTitleLikeOrderBySortOrder(String title, Boolean openDataFilter) 部门名模糊搜索 升序DepartmentService.findDepartmentAllById(Long id) 获得该部门的上级所有部门 -
plus.hiver.common.serviceimpl中Department的使用
返回变量类型为Department的类型的plus.hiver.common.serviceimpl中的方法修饰符和类型方法说明DepartmentServiceImpl.findByDeletedAndStatus(Integer delFlag, Integer status) DepartmentServiceImpl.findByDeletedAndStatusAndParentId(Integer delFlag, Integer status, Long parentId) DepartmentServiceImpl.findByParentIdAndStatusOrderBySortOrder(Long parentId, Integer status) DepartmentServiceImpl.findByParentIdOrderBySortOrder(Long parentId, Boolean openDataFilter) DepartmentServiceImpl.findByTitleLikeOrderBySortOrder(String title, Boolean openDataFilter) DepartmentServiceImpl.findDepartmentAllById(Long parentId)