From 6dfcceebab6d821af88255f1c0506c7a68d2cb6d Mon Sep 17 00:00:00 2001 From: PoffyZhang <99775271@qq.com> Date: Tue, 11 Jul 2023 14:09:28 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=A4=A7=E9=A1=B9=E7=9B=AE=E8=81=94?= =?UTF-8?q?=E5=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pmapi/projectdeclared/converter/ApplicationConverter.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java b/pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java index 2500bad..6ea9ef1 100644 --- a/pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java +++ b/pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java @@ -31,7 +31,7 @@ public class ApplicationConverter { FileService fileService) { return ProvincialProjectDTO.builder() //暂时先写死 - .operationManageUnit("GO_6c383c049d95461f9a0df780140ceb32") + .operationManageUnit("GO_a1479720291640b4982158fe3035a2d0") .digitalReform(String.valueOf(projectInfo.getBizDomain())) .regionCode(projectInfo.getAreaCode()) .regionName(projectInfo.getArea()) @@ -58,9 +58,11 @@ public class ApplicationConverter { .contactName(projectInfo.getContactName()) .contactPhone(projectInfo.getContactPhone()) .buildUnit(projectInfo.getBuildOrgName()) - .buildUnitCode(projectInfo.getBuildOrgCode()) +// .buildUnitCode(projectInfo.getBuildOrgCode()) + .buildUnitCode("GO_a1479720291640b4982158fe3035a2d0") .superUnit(projectInfo.getSuperOrg()) - .superUnitCode(projectInfo.getSuperOrgCode()) +// .superUnitCode(projectInfo.getSuperOrgCode()) + .superUnitCode("GO_a1479720291640b4982158fe3035a2d0") .projectEstimateFile(convertFile(projectInfo.getCalculationTotalInvestmentFile(),fileService)) .unitThreePlan(convertFile(projectInfo.getMainResponsibilitiesApplicantFile(),fileService)) .otherFile(convertFile(projectInfo.getPreliminaryPlanFile(),fileService)) @@ -70,8 +72,6 @@ public class ApplicationConverter { .projectApplyFile(convertFile(projectInfo.getProjectApplicationForm(),fileService)) .researchReport(convertFile(projectInfo.getPreliminaryPlanFile(),fileService)) .applicationInfo(convertApplications(applications,fileService)) - //条线单位 先写死 - .lineManageUnit("GO_3a8d76d825a849488916e618ff2f7474") .build(); }