Commit c530eb60 authored by 332784038@qq.com's avatar 332784038@qq.com

Merge branch 'order-update' into dev

parents c1b53931 b26c164d
...@@ -68,6 +68,8 @@ public interface CustomerContactsMapper extends BaseMapperX<CustomerContactsDO> ...@@ -68,6 +68,8 @@ public interface CustomerContactsMapper extends BaseMapperX<CustomerContactsDO>
"c.id as customer_id, ", "c.id as customer_id, ",
"c.name as customer_name, ", "c.name as customer_name, ",
"c.name_en as customer_name_en, ", "c.name_en as customer_name_en, ",
"c.default_pay as default_pay, ",
"c.no_consignee as no_consignee, ",
"cc.* , ", "cc.* , ",
"cc.id as customer_contacts_id, ", "cc.id as customer_contacts_id, ",
"cc.name as contacts_name, ", "cc.name as contacts_name, ",
...@@ -108,6 +110,8 @@ public interface CustomerContactsMapper extends BaseMapperX<CustomerContactsDO> ...@@ -108,6 +110,8 @@ public interface CustomerContactsMapper extends BaseMapperX<CustomerContactsDO>
"c.id as customer_id, ", "c.id as customer_id, ",
"c.name as customer_name, ", "c.name as customer_name, ",
"c.name_en as customer_name_en, ", "c.name_en as customer_name_en, ",
"c.default_pay as default_pay, ",
"c.no_consignee as no_consignee, ",
"cc.* , ", "cc.* , ",
"cc.id as customer_contacts_id, ", "cc.id as customer_contacts_id, ",
"cc.name as contacts_name, ", "cc.name as contacts_name, ",
......
...@@ -84,5 +84,12 @@ public class CustomerContactsDto { ...@@ -84,5 +84,12 @@ public class CustomerContactsDto {
private Boolean isInOpenSea; private Boolean isInOpenSea;
@ApiModelProperty(value = "控货无收货人,1-是,0-否")
private Boolean noConsignee;
@ApiModelProperty(value = "默认付款,1-是,0-否")
private Boolean defaultPay;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment