| | |
| | | package org.sxkj.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.sxkj.common.node.TreeStringNode; |
| | | import org.sxkj.system.entity.Dept; |
| | | import org.sxkj.system.param.DeptPageParam; |
| | | import org.sxkj.system.vo.DeptVO; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | String getFullRegionName(String areaCode); |
| | | String getSingleRegionName(String areaCode); |
| | | |
| | | /** |
| | | * |
| | | * @param page |
| | | * @param deptPageParam |
| | | * @return |
| | | */ |
| | | IPage<DeptVO> selectDeptPage(IPage<DeptVO> page, DeptPageParam deptPageParam); |
| | | } |