|
@@ -108,11 +108,13 @@ public class ContractManagementInfo extends BaseModel<ContractManagementInfo> {
|
|
|
/**
|
|
|
* 交货日期(起)
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date deliveryDateStart;
|
|
|
/**
|
|
|
* 交货日期(止)
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date deliveryDateEnd;
|
|
|
/**
|
|
@@ -126,6 +128,7 @@ public class ContractManagementInfo extends BaseModel<ContractManagementInfo> {
|
|
|
/**
|
|
|
* 签订日期
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date signingDate;
|
|
|
/**
|