From f22c4b9230808fed4fec80c435eccb4c833349a0 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 21 十月 2022 18:36:38 +0800 Subject: [PATCH] 2022.10.21 1.环境守法小程序后台功能首发版本完成 --- src/main/kotlin/cn/flightfeather/supervision/domain/entity/BaseInfo.java | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 160 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/domain/entity/BaseInfo.java b/src/main/kotlin/cn/flightfeather/supervision/domain/entity/BaseInfo.java index 2c55e12..54a8c7a 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/domain/entity/BaseInfo.java +++ b/src/main/kotlin/cn/flightfeather/supervision/domain/entity/BaseInfo.java @@ -19,6 +19,12 @@ private String biName; /** + * 鐢ㄦ埛绠�绉� + */ + @Column(name = "BI_Nick_Name") + private String biNickName; + + /** * 鎵�灞炲叕鍙竔d */ @Column(name = "CI_GUID") @@ -29,6 +35,30 @@ */ @Column(name = "CI_Name") private String ciName; + + @Column(name = "BI_Province_Code") + private String biProvinceCode; + + @Column(name = "BI_Province_Name") + private String biProvinceName; + + @Column(name = "BI_City_Code") + private String biCityCode; + + @Column(name = "BI_City_Name") + private String biCityName; + + @Column(name = "BI_District_Code") + private String biDistrictCode; + + @Column(name = "BI_District_Name") + private String biDistrictName; + + @Column(name = "BI_Town_Code") + private String biTownCode; + + @Column(name = "BI_Town_Name") + private String biTownName; /** * 鎵�灞炵墿涓氬叕鍙稿悕绉癷d @@ -115,6 +145,24 @@ } /** + * 鑾峰彇鐢ㄦ埛绠�绉� + * + * @return BI_Nick_Name - 鐢ㄦ埛绠�绉� + */ + public String getBiNickName() { + return biNickName; + } + + /** + * 璁剧疆鐢ㄦ埛绠�绉� + * + * @param biNickName 鐢ㄦ埛绠�绉� + */ + public void setBiNickName(String biNickName) { + this.biNickName = biNickName == null ? null : biNickName.trim(); + } + + /** * 鑾峰彇鎵�灞炲叕鍙竔d * * @return CI_GUID - 鎵�灞炲叕鍙竔d @@ -151,6 +199,118 @@ } /** + * @return BI_Province_Code + */ + public String getBiProvinceCode() { + return biProvinceCode; + } + + /** + * @param biProvinceCode + */ + public void setBiProvinceCode(String biProvinceCode) { + this.biProvinceCode = biProvinceCode == null ? null : biProvinceCode.trim(); + } + + /** + * @return BI_Province_Name + */ + public String getBiProvinceName() { + return biProvinceName; + } + + /** + * @param biProvinceName + */ + public void setBiProvinceName(String biProvinceName) { + this.biProvinceName = biProvinceName == null ? null : biProvinceName.trim(); + } + + /** + * @return BI_City_Code + */ + public String getBiCityCode() { + return biCityCode; + } + + /** + * @param biCityCode + */ + public void setBiCityCode(String biCityCode) { + this.biCityCode = biCityCode == null ? null : biCityCode.trim(); + } + + /** + * @return BI_City_Name + */ + public String getBiCityName() { + return biCityName; + } + + /** + * @param biCityName + */ + public void setBiCityName(String biCityName) { + this.biCityName = biCityName == null ? null : biCityName.trim(); + } + + /** + * @return BI_District_Code + */ + public String getBiDistrictCode() { + return biDistrictCode; + } + + /** + * @param biDistrictCode + */ + public void setBiDistrictCode(String biDistrictCode) { + this.biDistrictCode = biDistrictCode == null ? null : biDistrictCode.trim(); + } + + /** + * @return BI_District_Name + */ + public String getBiDistrictName() { + return biDistrictName; + } + + /** + * @param biDistrictName + */ + public void setBiDistrictName(String biDistrictName) { + this.biDistrictName = biDistrictName == null ? null : biDistrictName.trim(); + } + + /** + * @return BI_Town_Code + */ + public String getBiTownCode() { + return biTownCode; + } + + /** + * @param biTownCode + */ + public void setBiTownCode(String biTownCode) { + this.biTownCode = biTownCode == null ? null : biTownCode.trim(); + } + + /** + * @return BI_Town_Name + */ + public String getBiTownName() { + return biTownName; + } + + /** + * @param biTownName + */ + public void setBiTownName(String biTownName) { + this.biTownName = biTownName == null ? null : biTownName.trim(); + } + + /** * 鑾峰彇鎵�灞炵墿涓氬叕鍙稿悕绉癷d * * @return BI_Management_Company_Id - 鎵�灞炵墿涓氬叕鍙稿悕绉癷d -- Gitblit v1.9.3