diff --git a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisDestination.java b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisDestination.java
index b96ddb9e7..4a07b6a0c 100644
--- a/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisDestination.java
+++ b/emis-biz/src/main/java/com/xdadan/erp/emis/domain/EmisDestination.java
@@ -33,7 +33,6 @@ public class EmisDestination extends BaseEntity
{
private static final long serialVersionUID = 1L;
-
/* 序号 */
private Long id;
/* 目的地编码 */
@@ -60,6 +59,8 @@ public class EmisDestination extends BaseEntity
private String town;
/* 是否偏远地区 0-否 1-是 */
private Integer isHinterland;
+ /* 管辖片区id */
+ private Long countryAreaId;
/* 创建网点 */
private String createSite;
/* 更新网点 */
diff --git a/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml b/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml
index 74439ef82..6be5393ca 100644
--- a/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml
+++ b/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml
@@ -18,6 +18,7 @@
+
@@ -36,11 +37,10 @@
-
- select id, dest_code, dest_name, dest_name_en, status, line_code, country, site_code, province, city, county, town, is_hinterland, remark, tenant_id, del_flag, create_by, create_site, create_time, update_by, update_site, update_time from emis_destination
+ select id, dest_code, dest_name, dest_name_en, status, line_code, country, site_code, province, city, county, town, is_hinterland, country_area_id, remark, tenant_id, del_flag, create_by, create_site, create_time, update_by, update_site, update_time from emis_destination
@@ -110,6 +111,7 @@
county,
town,
is_hinterland,
+ country_area_id,
remark,
tenant_id,
del_flag,
@@ -134,6 +136,7 @@
#{county},
#{town},
#{isHinterland},
+ #{countryAreaId},
#{remark},
#{tenantId},
#{delFlag},
@@ -161,6 +164,7 @@
county = #{county},
town = #{town},
is_hinterland = #{isHinterland},
+ country_area_id = #{countryAreaId},
remark = #{remark},
tenant_id = #{tenantId},
del_flag = #{delFlag},