This commit is contained in:
linfso 2024-05-17 06:57:01 +08:00
parent 1084f3c3f3
commit 5a13ddf5ee
3 changed files with 15 additions and 0 deletions

View File

@ -383,6 +383,13 @@ public class EmisWaybill extends BaseEntity
private String printManName;
private String printSiteName;
// 销售,回款
private String salesmenName;
private String payeeName;

View File

@ -277,6 +277,10 @@ public class WaybillOrder implements Serializable {
private String printManName;
private String printSiteName;
// 销售,回款
private String salesmenName;
private String payeeName;
/**
* 转 VO
@ -352,6 +356,8 @@ public class WaybillOrder implements Serializable {
voItem.setDispatchManName(dbWaybill.getDispatchManName());
voItem.setPrintManName(dbWaybill.getPrintManName());
voItem.setPrintSiteName(dbWaybill.getPrintSiteName());
voItem.setSalesmenName(dbWaybill.getSalesmenName());
voItem.setPayeeName(dbWaybill.getPayeeName());
// voItem.setReceiveCustomerCode(dbWaybill.getReceiveCustomerCode());

View File

@ -186,6 +186,8 @@
<association property="printSiteName" column="print_site" select="selectSiteNameByCode"/>
<association property="printManName" column="print_man_code" select="selectEmpNameByCode"/>
<association property="salesmenName" column="salesmen" select="selectEmpNameByCode"/>
<association property="payeeName" column="payee" select="selectEmpNameByCode"/>
</resultMap>