合同续费日期

This commit is contained in:
1073413548 2024-08-30 15:02:33 +08:00
parent d8b6ff474c
commit 4c169d8588
3 changed files with 14 additions and 1 deletions

View File

@ -155,4 +155,8 @@ public class PsContractInfo extends TenantEntity {
* 原合同编码续费合同使用
*/
private String srcContractCode;
/**
* 续费日期
*/
private Date renewalDate;
}

View File

@ -67,7 +67,12 @@ public class PsContractInfoBo {
@NotNull(message = "服务周期结束时间")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date endServiceDate;
/**
* 续期日期
*/
@NotNull(message = "服务周期结束时间")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date renewalDate;
/**
* 客户是否到达现场
*/

View File

@ -229,4 +229,8 @@ public class PsContractInfoVo implements Serializable {
* 原合同编码续费合同使用
*/
private String srcContractCode;
/**
* 续费日期
*/
private Date renewalDate;
}