添加字段

This commit is contained in:
苏竹红
2023-06-16 15:41:20 +08:00
parent 91918058c7
commit 9ff21299c0
2 changed files with 5 additions and 0 deletions

View File

@@ -59,6 +59,10 @@ public class PartnerInterviewInfoVO {
@ApiModelProperty("线索ID")
private Long lineId;
@ApiModelProperty("合同号")
private String authCode;
@ApiModelProperty("审批发起时间")
private Date approveTime;
}

View File

@@ -171,6 +171,7 @@ public class HyPartnerInterviewPlanServiceImpl implements HyPartnerInterviewPlan
partnerInterviewInfoVO.setStatus(partnerInterviewInfoDTO.getStatus());
partnerInterviewInfoVO.setAuthCode(partnerInterviewInfoDTO.getAuthCode());
partnerInterviewInfoVO.setEndTime(DateUtil.format(partnerInterviewInfoDTO.getEndTime(),CoolDateUtils.DATE_FORMAT_SEC));
partnerInterviewInfoVO.setApproveTime(partnerInterviewInfoDTO.getApproveTime());
return partnerInterviewInfoVO;
}