|
@@ -27,7 +27,7 @@ public class LargeHousingLandServiceImpl extends ServiceImpl<PlatHousingLandMapp
|
|
private PlatHousingLandMapper platHousingLandMapper;
|
|
private PlatHousingLandMapper platHousingLandMapper;
|
|
|
|
|
|
|
|
|
|
- public Map<String, Object> getStockOfEstateResources(){
|
|
|
|
|
|
+ public Map<String, Object> getStockOfEstateResources(String appOrg){
|
|
String[] strArr = {"办公用房", "周转用房", "生产管理", "教育培训用房", "交流干部住房", "单身公寓/单身宿舍"};
|
|
String[] strArr = {"办公用房", "周转用房", "生产管理", "教育培训用房", "交流干部住房", "单身公寓/单身宿舍"};
|
|
List<LargeHousingLand> arr = new ArrayList<>();
|
|
List<LargeHousingLand> arr = new ArrayList<>();
|
|
for (int i = 0; i < 6; i++){
|
|
for (int i = 0; i < 6; i++){
|
|
@@ -38,7 +38,7 @@ public class LargeHousingLandServiceImpl extends ServiceImpl<PlatHousingLandMapp
|
|
land.setTypeName(strArr[i]);
|
|
land.setTypeName(strArr[i]);
|
|
arr.add(land);
|
|
arr.add(land);
|
|
}
|
|
}
|
|
- List<LargeHousingLand> list = platHousingLandMapper.getStockOfEstateResources();
|
|
|
|
|
|
+ List<LargeHousingLand> list = platHousingLandMapper.getStockOfEstateResources(appOrg);
|
|
Map<String, Object> map = new HashMap<>();
|
|
Map<String, Object> map = new HashMap<>();
|
|
BigDecimal housingAcreage = new BigDecimal(0);
|
|
BigDecimal housingAcreage = new BigDecimal(0);
|
|
Long housingNum = 0L;
|
|
Long housingNum = 0L;
|
|
@@ -54,12 +54,12 @@ public class LargeHousingLandServiceImpl extends ServiceImpl<PlatHousingLandMapp
|
|
return map;
|
|
return map;
|
|
}
|
|
}
|
|
|
|
|
|
- public Map<String, Object> getStockOfLandResources(){
|
|
|
|
- return platHousingLandMapper.getStockOfLandResources();
|
|
|
|
|
|
+ public Map<String, Object> getStockOfLandResources(String appOrg){
|
|
|
|
+ return platHousingLandMapper.getStockOfLandResources(appOrg);
|
|
}
|
|
}
|
|
|
|
|
|
- public Map<String, Object> getInvestFinishState(){
|
|
|
|
- return platHousingLandMapper.getInvestFinishState();
|
|
|
|
|
|
+ public Map<String, Object> getInvestFinishState(String appOrg){
|
|
|
|
+ return platHousingLandMapper.getInvestFinishState(appOrg);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|