【DAOP-1.0】数据需求
【功能点】测试问题处理
Showing
2 changed files
with
4 additions
and
0 deletions
... | @@ -156,6 +156,9 @@ public class ProcessOrderRQVO { | ... | @@ -156,6 +156,9 @@ public class ProcessOrderRQVO { |
156 | */ | 156 | */ |
157 | @Schema(description = "关联合同信息") | 157 | @Schema(description = "关联合同信息") |
158 | private String linkContractInfoJson; | 158 | private String linkContractInfoJson; |
159 | |||
160 | @Schema(description = "加工单位类型") | ||
161 | private String processCompanyType; | ||
159 | 162 | ||
160 | /** | 163 | /** |
161 | * 负责人姓名 | 164 | * 负责人姓名 | ... | ... |
... | @@ -293,6 +293,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService | ... | @@ -293,6 +293,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService |
293 | vo.setProcessState("N"); | 293 | vo.setProcessState("N"); |
294 | vo.setContactTel(bean.getContactInformation()); | 294 | vo.setContactTel(bean.getContactInformation()); |
295 | vo.setLinkContractInfoJson(bean.getContractAttachJson()); | 295 | vo.setLinkContractInfoJson(bean.getContractAttachJson()); |
296 | vo.setProcessCompanyType(bean.getProcessCompanyType()); | ||
296 | if("人员".equals(bean.getProcessCompanyType())){ | 297 | if("人员".equals(bean.getProcessCompanyType())){ |
297 | JSONArray array = new JSONArray(); | 298 | JSONArray array = new JSONArray(); |
298 | JSONObject object = new JSONObject(); | 299 | JSONObject object = new JSONObject(); | ... | ... |
-
Please register or sign in to post a comment