Commit bb951ad5 authored by yaobaizheng's avatar yaobaizheng

//立业云后台提交

parent 2e0ae4a0
......@@ -14,4 +14,5 @@ public class DevelopmentInfoDetailVO {
List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos;
List<DevelopmentIndustryPolicyInfo> developmentIndustryPolicyInfos;
List<DevelopmentIndustryFundInfo> developmentIndustryFundInfos;
List<DevelopmentIndustrialLandInfo> developmentIndustrialLandInfos;
}
......@@ -155,6 +155,9 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService {
@Autowired
DevelopmentInvestmentDirectionInfoServiceImpl investmentDirectionInfoService;
@Autowired
DevelopmentIndustrialLandInfoServiceImpl industrialLandInfoService;
@Autowired
DevelopmentIndustryPolicyInfoServiceImpl policyInfoService;
......@@ -190,6 +193,10 @@ public class DevelopmentInfoServiceImpl implements IDevelopmentInfoService {
List<DevelopmentInvestmentDirectionInfo> developmentInvestmentDirectionInfos = investmentDirectionInfoService.selectDevelopmentInvestmentDirectionInfoList(developmentInvestmentDirectionInfo);
developmentInfoDetailVO.setDevelopmentInvestmentDirectionInfos(developmentInvestmentDirectionInfos);
DevelopmentIndustrialLandInfo developmentIndustrialLandInfo = new DevelopmentIndustrialLandInfo();
developmentIndustrialLandInfo.setDevelopmentId(developmentInfoId);
List<DevelopmentIndustrialLandInfo> developmentIndustrialLandInfos = industrialLandInfoService.selectDevelopmentIndustrialLandInfoList(developmentIndustrialLandInfo);
DevelopmentIndustryPolicyInfo developmentIndustryPolicyInfo = new DevelopmentIndustryPolicyInfo();
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