diff --git a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCommissionQuote.java b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCommissionQuote.java index 55f290d97..050f7e7f4 100644 --- a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCommissionQuote.java +++ b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisCommissionQuote.java @@ -41,6 +41,10 @@ public class EmisCommissionQuote extends BaseEntity private String quoteCode; /* 提成方案名称 */ private String quoteName; + /* 所属线路代码 */ + private String transLineCode; + /* 产品类型代码 */ + private String prodCode; /* 起始国 */ private String fromCountry; /* 目的国家 */ @@ -71,6 +75,10 @@ public class EmisCommissionQuote extends BaseEntity // ---- 非数据库字段 private String fromCountryName; private String countryName; + /* 所属线路名称 */ + private String transLine; + /* 产品类型名称 */ + private String prodName; private List exprList; diff --git a/emis-biz/src/main/resources/mapper/EmisCommissionQuoteMapper.xml b/emis-biz/src/main/resources/mapper/EmisCommissionQuoteMapper.xml index b389c50e9..f05c3302c 100644 --- a/emis-biz/src/main/resources/mapper/EmisCommissionQuoteMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisCommissionQuoteMapper.xml @@ -8,6 +8,8 @@ + + @@ -21,14 +23,17 @@ + + + - select quote_id, quote_code, quote_name, from_country, country, fee_type, calc_type, post_type, trans_type, bl_open, emp_code, emp_name, start_date, end_date, priority_level, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time, create_site, update_site from emis_commission_quote + select quote_id, quote_code, quote_name, trans_line_code, prod_code, from_country, country, fee_type, calc_type, post_type, trans_type, bl_open, emp_code, emp_name, start_date, end_date, priority_level, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time, create_site, update_site from emis_commission_quote @@ -102,9 +107,10 @@ insert into emis_commission_quote - quote_id, quote_code, quote_name, + trans_line_code, + prod_code, from_country, country, fee_type, @@ -128,9 +134,10 @@ update_site, - #{quoteId}, #{quoteCode}, #{quoteName}, + #{transLineCode}, + #{prodCode}, #{fromCountry}, #{country}, #{feeType}, @@ -160,6 +167,8 @@ quote_code = #{quoteCode}, quote_name = #{quoteName}, + trans_line_code = #{transLineCode}, + prod_code = #{prodCode}, from_country = #{fromCountry}, country = #{country}, fee_type = #{feeType},