md
This commit is contained in:
parent
eb73338afa
commit
053dd0702d
@ -349,4 +349,7 @@ public class EmisWaybill extends BaseEntity
|
||||
private List<EmisWaybillAttachment> attachmentList;
|
||||
|
||||
|
||||
private String sendSiteName;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -179,6 +179,9 @@ public class WaybillOrder implements Serializable {
|
||||
/* 取件员代码 */
|
||||
private String takePieceEmployeeCode;
|
||||
|
||||
/* 登记站点代码 */
|
||||
private String registerSiteCode;
|
||||
|
||||
/* 发件网点代码 */
|
||||
private String sendSiteCode;
|
||||
|
||||
@ -236,6 +239,9 @@ public class WaybillOrder implements Serializable {
|
||||
private String remark;
|
||||
|
||||
|
||||
private String sendSiteName;
|
||||
|
||||
|
||||
/**
|
||||
* 转 VO
|
||||
* @param dbWaybill
|
||||
@ -424,7 +430,7 @@ public class WaybillOrder implements Serializable {
|
||||
// voItem.setCurrentSiteCode(dbWaybill.getCurrentSiteCode());
|
||||
// voItem.setNextSiteCode(dbWaybill.getNextSiteCode());
|
||||
// voItem.setLastSiteCode(dbWaybill.getLastSiteCode());
|
||||
// voItem.setRegisterSiteCode(dbWaybill.getRegisterSiteCode());
|
||||
voItem.setRegisterSiteCode(dbWaybill.getRegisterSiteCode());
|
||||
// voItem.setRegisterDate(dbWaybill.getRegisterDate());
|
||||
// voItem.setRegisterManCode(dbWaybill.getRegisterManCode());
|
||||
|
||||
@ -432,6 +438,8 @@ public class WaybillOrder implements Serializable {
|
||||
voItem.setSendSiteCode(dbWaybill.getSendSiteCode());
|
||||
voItem.setSendDate(dbWaybill.getSendDate());
|
||||
|
||||
voItem.setSendSiteName(dbWaybill.getSendSiteName());
|
||||
|
||||
// voItem.setDispatchManCode(dbWaybill.getDispatchManCode());
|
||||
// voItem.setDispatchDate(dbWaybill.getDispatchDate());
|
||||
voItem.setDispatchSiteCode(dbWaybill.getDispatchSiteCode());
|
||||
@ -474,10 +482,6 @@ public class WaybillOrder implements Serializable {
|
||||
// voItem.setUpdateSite(dbWaybill.getUpdateSite());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
return voItem;
|
||||
}
|
||||
|
||||
@ -633,12 +637,15 @@ public class WaybillOrder implements Serializable {
|
||||
// dbWaybill.setCurrentSiteCode(this.getCurrentSiteCode());
|
||||
// dbWaybill.setNextSiteCode(this.getNextSiteCode());
|
||||
// dbWaybill.setLastSiteCode(this.getLastSiteCode());
|
||||
// dbWaybill.setRegisterSiteCode(this.getRegisterSiteCode());
|
||||
dbWaybill.setRegisterSiteCode(this.getRegisterSiteCode());
|
||||
// dbWaybill.setRegisterDate(this.getRegisterDate());
|
||||
// dbWaybill.setRegisterManCode(this.getRegisterManCode());
|
||||
dbWaybill.setTakePieceEmployeeCode(this.getTakePieceEmployeeCode());
|
||||
dbWaybill.setSendSiteCode(this.getSendSiteCode());
|
||||
dbWaybill.setSendDate(this.getSendDate());
|
||||
|
||||
dbWaybill.setSendSiteName(this.getSendSiteName());
|
||||
|
||||
// dbWaybill.setDispatchManCode(this.getDispatchManCode());
|
||||
// dbWaybill.setDispatchDate(this.getDispatchDate());
|
||||
dbWaybill.setDispatchSiteCode(this.getDispatchSiteCode());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user