Commit 0736ea6a authored by chenyuxi's avatar chenyuxi

feat: 瓜子档案表里新增“地区ID”相关字段

parent 1bb15744
...@@ -162,6 +162,10 @@ public class TGzEmpInfo extends BaseEntity { ...@@ -162,6 +162,10 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty("籍贯") @ExcelProperty("籍贯")
@Schema(description = "籍贯") @Schema(description = "籍贯")
private String nativePlace; private String nativePlace;
@Schema(description = "籍贯地区ID")
private Integer nativePlaceAreaId;
/** /**
* 民族 * 民族
*/ */
...@@ -295,6 +299,15 @@ public class TGzEmpInfo extends BaseEntity { ...@@ -295,6 +299,15 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty("家庭住址-所在区编码") @ExcelProperty("家庭住址-所在区编码")
@Schema(description = "家庭住址-所在区编码") @Schema(description = "家庭住址-所在区编码")
private String countyId; private String countyId;
@Schema(description = "家庭住址-所在省地区ID")
private Integer stateAreaId;
@Schema(description = "家庭住址-所在市地区ID")
private Integer cityAreaId;
@Schema(description = "家庭住址-所在区地区ID")
private Integer countyAreaId;
/** /**
* 家庭住址-详细地址 * 家庭住址-详细地址
*/ */
...@@ -441,6 +454,16 @@ public class TGzEmpInfo extends BaseEntity { ...@@ -441,6 +454,16 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty("户口-所在区编码") @ExcelProperty("户口-所在区编码")
@Schema(description = "户口-所在区编码") @Schema(description = "户口-所在区编码")
private String hukouCounty; private String hukouCounty;
@Schema(description = "户口-所在省地区ID")
private Integer hukouProvinceAreaId;
@Schema(description = "户口-所在市地区ID")
private Integer hukouCityAreaId;
@Schema(description = "户口-所在区地区ID")
private Integer hukouCountyAreaId;
/** /**
* 户口地址 * 户口地址
*/ */
...@@ -513,6 +536,13 @@ public class TGzEmpInfo extends BaseEntity { ...@@ -513,6 +536,13 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty("开户行所在市") @ExcelProperty("开户行所在市")
@Schema(description = "开户行所在市") @Schema(description = "开户行所在市")
private String accountCity; private String accountCity;
@Schema(description = "开户行所在省地区ID")
private Integer accountProvinceAreaId;
@Schema(description = "开户行所在市地区ID")
private Integer accountCityAreaId;
/** /**
* 账号ID * 账号ID
*/ */
......
...@@ -91,6 +91,15 @@ ...@@ -91,6 +91,15 @@
<result property="accountCity" column="account_city"/> <result property="accountCity" column="account_city"/>
<result property="accountEcId" column="account_ec_id"/> <result property="accountEcId" column="account_ec_id"/>
<result property="accountName" column="account_name"/> <result property="accountName" column="account_name"/>
<result property="nativePlaceAreaId" column="native_place_area_id"/>
<result property="stateAreaId" column="state_area_id"/>
<result property="cityAreaId" column="city_area_id"/>
<result property="countyAreaId" column="county_area_id"/>
<result property="hukouProvinceAreaId" column="hukou_province_area_id"/>
<result property="hukouCityAreaId" column="hukou_city_area_id"/>
<result property="hukouCountyAreaId" column="hukou_county_area_id"/>
<result property="accountProvinceAreaId" column="account_province_area_id"/>
<result property="accountCityAreaId" column="account_city_area_id"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
a.id, a.id,
...@@ -159,7 +168,16 @@ ...@@ -159,7 +168,16 @@
a.account_province, a.account_province,
a.account_city, a.account_city,
a.account_ec_id, a.account_ec_id,
a.account_name a.account_name,
a.native_place_area_id,
a.state_area_id,
a.city_area_id,
a.county_area_id,
a.hukou_province_area_id,
a.hukou_city_area_id,
a.hukou_county_area_id,
a.account_province_area_id,
a.account_city_area_id
</sql> </sql>
<sql id="tGzEmpInfo_where"> <sql id="tGzEmpInfo_where">
<if test="tGzEmpInfo != null"> <if test="tGzEmpInfo != null">
......
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