Commit bb951ad5 authored by yaobaizheng's avatar yaobaizheng

//立业云后台提交

parent 2e0ae4a0
...@@ -14,4 +14,5 @@ public class DevelopmentInfoDetailVO { ...@@ -14,4 +14,5 @@ public class DevelopmentInfoDetailVO {
List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos; List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos;
List<DevelopmentIndustryPolicyInfo> developmentIndustryPolicyInfos; List<DevelopmentIndustryPolicyInfo> developmentIndustryPolicyInfos;
List<DevelopmentIndustryFundInfo> developmentIndustryFundInfos; List<DevelopmentIndustryFundInfo> developmentIndustryFundInfos;
List<DevelopmentIndustrialLandInfo> developmentIndustrialLandInfos;
} }
...@@ -155,6 +155,9 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService { ...@@ -155,6 +155,9 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService {
@Autowired @Autowired
DevelopmentInvestmentDirectionInfoServiceImpl investmentDirectionInfoService; DevelopmentInvestmentDirectionInfoServiceImpl investmentDirectionInfoService;
@Autowired
DevelopmentIndustrialLandInfoServiceImpl industrialLandInfoService;
@Autowired @Autowired
DevelopmentIndustryPolicyInfoServiceImpl policyInfoService; DevelopmentIndustryPolicyInfoServiceImpl policyInfoService;
...@@ -190,6 +193,10 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService { ...@@ -190,6 +193,10 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService {
List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos = investmentDirectionInfoService.selectDevelopmentInvestmentDirectionInfoList(developmentInvestmentDirectionInfo); List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos = investmentDirectionInfoService.selectDevelopmentInvestmentDirectionInfoList(developmentInvestmentDirectionInfo);
developmentInfoDetailVO.setDevelopmentInvestmentDirectionInfos(developmentInvestmentDirectionInfos); developmentInfoDetailVO.setDevelopmentInvestmentDirectionInfos(developmentInvestmentDirectionInfos);
DevelopmentIndustrialLandInfo developmentIndustrialLandInfo = new DevelopmentIndustrialLandInfo();
developmentIndustrialLandInfo.setDevelopmentId(developmentInfoId);
List<DevelopmentIndustrialLandInfo> developmentIndustrialLandInfos = industrialLandInfoService.selectDevelopmentIndustrialLandInfoList(developmentIndustrialLandInfo);
DevelopmentIndustryPolicyInfo developmentIndustryPolicyInfo = new DevelopmentIndustryPolicyInfo(); DevelopmentIndustryPolicyInfo developmentIndustryPolicyInfo = new DevelopmentIndustryPolicyInfo();
developmentIndustryPolicyInfo.setDevelopmentId(developmentInfoId); developmentIndustryPolicyInfo.setDevelopmentId(developmentInfoId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment