|
@@ -239,6 +239,26 @@ public class ContractManagementInfo extends BaseModel<ContractManagementInfo> {
|
|
|
* 代收费
|
|
|
*/
|
|
|
private Double agencyCharge;
|
|
|
+ /**
|
|
|
+ * 代储费
|
|
|
+ */
|
|
|
+ private Double storageFee;
|
|
|
+ /**
|
|
|
+ * 代储费起算重量
|
|
|
+ */
|
|
|
+ private Float storageFeeWeight;
|
|
|
+ /**
|
|
|
+ * 代储费起算日期
|
|
|
+ */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date storageFeeStartdate;
|
|
|
+ /**
|
|
|
+ * 代储费预计终止日期
|
|
|
+ */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date storageFeeEnddate;
|
|
|
/**
|
|
|
* 签订日期
|
|
|
*/
|