71911a8c by 肖初晴

【DAOP-1.0】数据需求

【功能点】测试问题处理
1 parent 03413ab4
...@@ -157,6 +157,9 @@ public class ProcessOrderRQVO { ...@@ -157,6 +157,9 @@ public class ProcessOrderRQVO {
157 @Schema(description = "关联合同信息") 157 @Schema(description = "关联合同信息")
158 private String linkContractInfoJson; 158 private String linkContractInfoJson;
159 159
160 @Schema(description = "加工单位类型")
161 private String processCompanyType;
162
160 /** 163 /**
161 * 负责人姓名 164 * 负责人姓名
162 */ 165 */
......
...@@ -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();
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!