diff --git a/ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcCountry.java b/ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcCountry.java
index d28972f..24b8b10 100644
--- a/ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcCountry.java
+++ b/ruoyi-plan/src/main/java/com/ruoyi/dhc/domain/DhcCountry.java
@@ -26,6 +26,9 @@ public class DhcCountry extends BaseEntity
@Excel(name = "国家名称")
private String countryName;
+ @Excel(name = "产品线编码")
+ private String productLineCode;
+
/** 销售大区id */
@Excel(name = "销售大区id")
private Long areaIdLarge;
@@ -72,12 +75,21 @@ public class DhcCountry extends BaseEntity
{
return countryName;
}
+
+ public String getProductLineCode() {
+ return productLineCode;
+ }
+
+ public void setProductLineCode(String productLineCode) {
+ this.productLineCode = productLineCode;
+ }
+
public void setAreaIdLarge(Long areaIdLarge)
{
this.areaIdLarge = areaIdLarge;
}
- public Long getAreaIdLarge()
+ public Long getAreaIdLarge()
{
return areaIdLarge;
}
diff --git a/ruoyi-plan/src/main/resources/mapper/dhc/DhcCountryMapper.xml b/ruoyi-plan/src/main/resources/mapper/dhc/DhcCountryMapper.xml
index ca33788..1cea4a0 100644
--- a/ruoyi-plan/src/main/resources/mapper/dhc/DhcCountryMapper.xml
+++ b/ruoyi-plan/src/main/resources/mapper/dhc/DhcCountryMapper.xml
@@ -8,6 +8,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
@@ -20,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select country_id, country_code, country_name, area_id_large, area_name_large, area_id_small, area_name_small, del_flag, create_by, create_time, update_by, update_time from dhc_country
+ select country_id, country_code, country_name, product_line_code, area_id_large, area_name_large, area_id_small, area_name_small, del_flag, create_by, create_time, update_by, update_time from dhc_country