1629cc31 by xiaojie

【数据资产】

1、加工单加工明细新增、修改参数
1 parent 898debd9
...@@ -235,6 +235,9 @@ public class DemandRSVO { ...@@ -235,6 +235,9 @@ public class DemandRSVO {
235 @Schema(title = "专区名称") 235 @Schema(title = "专区名称")
236 private String zqName; 236 private String zqName;
237 237
238 @Schema(description ="业务名称")
239 private String bizName;
240
238 /** 241 /**
239 * 跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销) 242 * 跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销)
240 */ 243 */
......
...@@ -38,5 +38,8 @@ public class DemandUpdateStateVO { ...@@ -38,5 +38,8 @@ public class DemandUpdateStateVO {
38 @Schema(description ="产品验收验收完成时间") 38 @Schema(description ="产品验收验收完成时间")
39 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") 39 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
40 private Date acceptFinishTime; 40 private Date acceptFinishTime;
41
42 @Schema(description ="业务名称")
43 private String bizName;
41 44
42 } 45 }
......
...@@ -698,6 +698,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService ...@@ -698,6 +698,7 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
698 vo.setProductAcceptState(voState.getProductAcceptState()); 698 vo.setProductAcceptState(voState.getProductAcceptState());
699 vo.setAcceptFinishTime(DateUtil.getShortDate(voState.getAcceptFinishTime())); 699 vo.setAcceptFinishTime(DateUtil.getShortDate(voState.getAcceptFinishTime()));
700 vo.setFinishCycle(DateUtil.getDiffDay(voState.getAcceptFinishTime(),entity.getProcessingGenerateTime())); 700 vo.setFinishCycle(DateUtil.getDiffDay(voState.getAcceptFinishTime(),entity.getProcessingGenerateTime()));
701 vo.setBizName(voState.getBizName());
701 } 702 }
702 } 703 }
703 return vo; 704 return vo;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!