合同管理出账日保存不上问题;

This commit is contained in:
王奎兴
2026-03-05 14:50:20 +08:00
parent f6b20441bc
commit 401b1f7097
4 changed files with 16 additions and 4 deletions
@@ -160,6 +160,9 @@ public class ContractManage extends BaseVOEntity{
@JsonFormat(pattern = "yyyy-MM-dd")
private Date paymentDate;
@ApiModelProperty(name = "出账天数")
private Integer billDays;
@ApiModelProperty(name = "主体类型(1-货主,2-客户,3-承运商)")
private Integer principalType;
@@ -172,4 +175,4 @@ public class ContractManage extends BaseVOEntity{
@ApiModelProperty(name = "是否包含运输费用(1-包含,2-包含)")
private Integer transportationCosts;
}
}
@@ -169,6 +169,9 @@ public class ContractManagePO extends BaseVOEntity{
@JsonFormat(pattern = "d", timezone = "GMT+8")
private Date paymentDate;
@ApiModelProperty(name = "出账天数")
private Integer billDays;
@ApiModelProperty(name = "主体类型(1-货主,2-客户,3-承运商)")
private Integer principalType;
@@ -181,4 +184,4 @@ public class ContractManagePO extends BaseVOEntity{
@ApiModelProperty(name = "是否包含运输费用(1-包含,2-包含)")
private Integer transportationCosts;
}
}
@@ -199,6 +199,9 @@ public class ContractManageDO extends BaseVOEntity{
@JsonFormat(pattern = "yyyy-MM-dd")
private Date paymentDate;
@ApiModelProperty(name = "出账天数")
private Integer billDays;
@ApiModelProperty(name = "主体类型(1-货主,2-客户,3-承运商)")
private Integer principalType;
@@ -211,4 +214,4 @@ public class ContractManageDO extends BaseVOEntity{
@ApiModelProperty(name = "是否包含运输费用(1-包含,2-包含)")
private Integer transportationCosts;
}
}
@@ -190,6 +190,9 @@ public class ContractManageDTO extends BaseVOEntity{
@JsonFormat(pattern = "yyyy-MM-dd")
private Date paymentDate;
@ApiModelProperty(name = "出账天数")
private Integer billDays;
@ApiModelProperty(name = "主体类型(1-货主,2-客户,3-承运商)")
private Integer principalType;
@@ -201,4 +204,4 @@ public class ContractManageDTO extends BaseVOEntity{
@ApiModelProperty(name = "是否包含运输费用(1-包含,2-包含)")
private Integer transportationCosts;
}
}