md
This commit is contained in:
parent
a0651f4aec
commit
eb73338afa
@ -69,6 +69,10 @@ public class WaybillOrder implements Serializable {
|
||||
|
||||
/* 快递线路 */
|
||||
private String transLine;
|
||||
/* 时效 */
|
||||
private String timeType;
|
||||
/* 计泡比例 */
|
||||
private String meterType;
|
||||
|
||||
/* 快递产品类型 */
|
||||
private String productType;
|
||||
@ -79,6 +83,10 @@ public class WaybillOrder implements Serializable {
|
||||
/* 报关方式 */
|
||||
private String customsEclaration;
|
||||
|
||||
/* 预计到达时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date estimateDate;
|
||||
|
||||
/* 包装类型 */
|
||||
private String packType;
|
||||
|
||||
@ -335,13 +343,13 @@ public class WaybillOrder implements Serializable {
|
||||
voItem.setTransLine(dbWaybill.getTransLineType());
|
||||
voItem.setProductType(dbWaybill.getProductType());
|
||||
|
||||
// voItem.setTimeType(dbWaybill.getTimeType());
|
||||
// voItem.setMeterType(dbWaybill.getMeterType());
|
||||
voItem.setTimeType(dbWaybill.getTimeType());
|
||||
voItem.setMeterType(dbWaybill.getMeterType());
|
||||
|
||||
voItem.setCustomsClear(dbWaybill.getCustomsClear());
|
||||
voItem.setCustomsEclaration(dbWaybill.getCustomsEclaration());
|
||||
|
||||
// voItem.setEstimateDate(dbWaybill.getEstimateDate());
|
||||
voItem.setEstimateDate(dbWaybill.getEstimateDate());
|
||||
|
||||
voItem.setPackType(dbWaybill.getPackType());
|
||||
voItem.setDispatchMethod(dbWaybill.getDispatchMethod());
|
||||
@ -543,13 +551,13 @@ public class WaybillOrder implements Serializable {
|
||||
dbWaybill.setTransLineType(this.getTransLine());
|
||||
dbWaybill.setProductType(this.getProductType());
|
||||
|
||||
// dbWaybill.setTimeType(this.getTimeType());
|
||||
// dbWaybill.setMeterType(this.getMeterType());
|
||||
dbWaybill.setTimeType(this.getTimeType());
|
||||
dbWaybill.setMeterType(this.getMeterType());
|
||||
|
||||
dbWaybill.setCustomsClear(this.getCustomsClear());
|
||||
dbWaybill.setCustomsEclaration(this.getCustomsEclaration());
|
||||
|
||||
// dbWaybill.setEstimateDate(this.getEstimateDate());
|
||||
dbWaybill.setEstimateDate(this.getEstimateDate());
|
||||
|
||||
dbWaybill.setPackType(this.getPackType());
|
||||
dbWaybill.setDispatchMethod(this.getDispatchMethod());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user