| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectZAre(String deptId) { |
| | | return baseMapper.selectZAre(deptId); |
| | | public List<Map<String, Object>> selectZAre(LandVO land) { |
| | | return baseMapper.selectZAre(land); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectSAre(String deptId) { |
| | | return baseMapper.selectSAre(deptId); |
| | | public List<Map<String, Object>> selectSAre(LandVO land) { |
| | | return baseMapper.selectSAre(land); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectWAre(String deptId) { |
| | | return baseMapper.selectWAre(deptId); |
| | | public List<Map<String, Object>> selectWAre(LandVO land) { |
| | | return baseMapper.selectWAre(land); |
| | | } |
| | | |
| | | @Override |
| | | public List selectNum(String deptId) { |
| | | return baseMapper.selectNum(deptId); |
| | | public List selectNum(LandVO land) { |
| | | return baseMapper.selectNum(land); |
| | | } |
| | | |
| | | /** |
| | | * 地块列表(不分页) |
| | | * @param land |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<LandVO> getLandList(LandVO land) { |
| | | return baseMapper.getLandList(land); |
| | | } |
| | | } |