合同续费日期
This commit is contained in:
parent
d8b6ff474c
commit
4c169d8588
@ -155,4 +155,8 @@ public class PsContractInfo extends TenantEntity {
|
|||||||
* 原合同编码(续费合同使用)
|
* 原合同编码(续费合同使用)
|
||||||
*/
|
*/
|
||||||
private String srcContractCode;
|
private String srcContractCode;
|
||||||
|
/**
|
||||||
|
* 续费日期
|
||||||
|
*/
|
||||||
|
private Date renewalDate;
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,12 @@ public class PsContractInfoBo {
|
|||||||
@NotNull(message = "服务周期结束时间")
|
@NotNull(message = "服务周期结束时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
private Date endServiceDate;
|
private Date endServiceDate;
|
||||||
|
/**
|
||||||
|
* 续期日期
|
||||||
|
*/
|
||||||
|
@NotNull(message = "服务周期结束时间")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
|
private Date renewalDate;
|
||||||
/**
|
/**
|
||||||
* 客户是否到达现场
|
* 客户是否到达现场
|
||||||
*/
|
*/
|
||||||
|
@ -229,4 +229,8 @@ public class PsContractInfoVo implements Serializable {
|
|||||||
* 原合同编码(续费合同使用)
|
* 原合同编码(续费合同使用)
|
||||||
*/
|
*/
|
||||||
private String srcContractCode;
|
private String srcContractCode;
|
||||||
|
/**
|
||||||
|
* 续费日期
|
||||||
|
*/
|
||||||
|
private Date renewalDate;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user