Explorar el Código

售后添加联系方式

yzc hace 11 meses
padre
commit
1bedb81d84

+ 9 - 0
hx-sale/src/main/java/com/fjhx/sale/entity/contract/vo/ContractProductVo.java

@@ -212,4 +212,13 @@ public class ContractProductVo extends ContractProduct {
      */
     private Integer isSettled;
 
+    /**
+     * 买方名称
+     */
+    private String buyContactName;
+    /**
+     * 买方联系方式
+     */
+    private String buyContactNumber;
+
 }

+ 3 - 1
hx-sale/src/main/resources/mapper/contract/ContractProductMapper.xml

@@ -16,7 +16,9 @@
                t2.create_user          AS salesmanId,
                t2.version              AS contractVersion,
                t2.contract_template_id AS contractTemplateId,
-               t2.currency
+               t2.currency,
+               t2.buy_contact_name,
+               t2.buy_contact_number
         FROM contract_product t1
                  JOIN contract t2 ON t1.contract_id = t2.id
             ${ew.customSqlSegment}