From 1a677d2b4a4bc615602f8c2a22bc07ec1356e5be Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 16 十月 2025 17:39:06 +0800
Subject: [PATCH] 2025.10.16 1. 根据全局响应增强器GlobalResponseAdvice,将原先的BaseResPack接口包装函数统一去除; 2. 新增三种类型的数据产品数据库实体 3. 新增典型问题场景清单中间数据产品接口
---
src/main/kotlin/cn/flightfeather/supervision/domain/ds2/entity/BaseInfo.java | 194 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 194 insertions(+), 0 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/domain/ds2/entity/BaseInfo.java b/src/main/kotlin/cn/flightfeather/supervision/domain/ds2/entity/BaseInfo.java
index 9b3a421..e29dfa6 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/domain/ds2/entity/BaseInfo.java
+++ b/src/main/kotlin/cn/flightfeather/supervision/domain/ds2/entity/BaseInfo.java
@@ -21,6 +21,12 @@
private String biName;
/**
+ * 鐢ㄦ埛绠�绉�
+ */
+ @Column(name = "BI_Nick_Name")
+ private String biNickName;
+
+ /**
* 鎵�灞炲叕鍙竔d
*/
@Column(name = "CI_GUID")
@@ -31,6 +37,36 @@
*/
@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;
+
+ @Column(name = "BI_Area_Code")
+ private String biAreaCode;
+
+ @Column(name = "BI_Area")
+ private String biArea;
/**
* 鎵�灞炵墿涓氬叕鍙稿悕绉癷d
@@ -117,6 +153,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
@@ -153,6 +207,146 @@
}
/**
+ * @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();
+ }
+
+ /**
+ * @return BI_Area_Code
+ */
+ public String getBiAreaCode() {
+ return biAreaCode;
+ }
+
+ /**
+ * @param biAreaCode
+ */
+ public void setBiAreaCode(String biAreaCode) {
+ this.biAreaCode = biAreaCode == null ? null : biAreaCode.trim();
+ }
+
+ /**
+ * @return UC_Area
+ */
+ public String getBiArea() {
+ return biArea;
+ }
+
+ /**
+ * @param biArea
+ */
+ public void setBiArea(String biArea) {
+ this.biArea = biArea == null ? null : biArea.trim();
+ }
+
+ /**
* 鑾峰彇鎵�灞炵墿涓氬叕鍙稿悕绉癷d
*
* @return BI_Management_Company_Id - 鎵�灞炵墿涓氬叕鍙稿悕绉癷d
--
Gitblit v1.9.3