From a8c00a4db043578da7b3a5bb79abb55e0dc19c49 Mon Sep 17 00:00:00 2001 From: linfso Date: Thu, 11 Jan 2024 13:29:01 +0800 Subject: [PATCH] md --- .../java/com/xdadan/erp/emis/domain/EmisDestination.java | 7 ++++--- .../src/main/resources/mapper/EmisDestinationMapper.xml | 9 +++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) 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 34d40cf45..7d73443b9 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 @@ -2,7 +2,7 @@ * @Project: emis * @Title: EmisDestination.java * @author linfso - * @date 2024-01-11 05:16:09 + * @date 2024-01-11 05:28:11 * @Copyright: ShangHai Duta 2022 All rights reserved. * @version v1.0 * @Description:

目的地 实体类

@@ -25,7 +25,7 @@ import lombok.Data; * @ClassName EmisDestination * @Description 目的地 * @author linfso - * @date 2024-01-11 05:16:09 + * @date 2024-01-11 05:28:11 */ @Data public class EmisDestination extends BaseEntity @@ -56,7 +56,8 @@ public class EmisDestination extends BaseEntity private String county; /* 乡镇 */ private String town; - + /* 是否偏远地区 0-否 1-是 */ + private Integer isHinterland; /* 创建网点 */ private String createSite; /* 更新网点 */ diff --git a/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml b/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml index 4e5752e25..7a9b4eb03 100644 --- a/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisDestinationMapper.xml @@ -17,6 +17,7 @@ + @@ -29,7 +30,7 @@ - select id, dest_code, dest_name, dest_name_en, status, country, site_code, site_name, province, city, county, town, 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, country, site_code, site_name, 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 @@ -81,6 +83,7 @@ city, county, town, + is_ hinterland, remark, tenant_id, del_flag, @@ -104,6 +107,7 @@ #{city}, #{county}, #{town}, + #{isHinterland}, #{remark}, #{tenantId}, #{delFlag}, @@ -130,6 +134,7 @@ city = #{city}, county = #{county}, town = #{town}, + is_ hinterland = #{isHinterland}, remark = #{remark}, tenant_id = #{tenantId}, del_flag = #{delFlag},