| | |
| | | return page.setRecords(baseMapper.selectLandPage(page, land)); |
| | | } |
| | | |
| | | /** |
| | | * 地块信息新增 |
| | | * @param land |
| | | * @return |
| | | */ |
| | | @Override |
| | | public boolean saveLandInfo(Land land) { |
| | | return baseMapper.saveLandInfo(land); |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectZAre() { |
| | | return baseMapper.selectZAre(); |
| | | public List<Map<String, Object>> selectZAre(String deptId) { |
| | | return baseMapper.selectZAre(deptId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectSAre() { |
| | | return baseMapper.selectSAre(); |
| | | public List<Map<String, Object>> selectSAre(String deptId) { |
| | | return baseMapper.selectSAre(deptId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectWAre() { |
| | | return baseMapper.selectWAre(); |
| | | public List<Map<String, Object>> selectWAre(String deptId) { |
| | | return baseMapper.selectWAre(deptId); |
| | | } |
| | | |
| | | @Override |
| | | public List selectNum() { |
| | | return baseMapper.selectNum(); |
| | | public List selectNum(String deptId) { |
| | | return baseMapper.selectNum(deptId); |
| | | } |
| | | |
| | | /** |
| | | * 地块列表(不分页) |
| | | * @param land |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<LandVO> getLandList(LandVO land) { |
| | | return baseMapper.getLandList(land); |
| | | } |
| | | } |