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/model/dataproduct/PPListProbRecurrence.kt | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProbRecurrence.kt b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProbRecurrence.kt
index 22f1cc3..b2aed0e 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProbRecurrence.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProbRecurrence.kt
@@ -1,29 +1,48 @@
package cn.flightfeather.supervision.model.dataproduct
+import io.swagger.annotations.ApiModel
+import io.swagger.annotations.ApiModelProperty
+
/**
* 鍒濈骇鏁版嵁浜у搧
* 闂澶嶅彂鎯呭喌
* @date 2025/7/30
* @author feiyu02
*/
+@ApiModel(value = "闂澶嶅彂鎯呭喌")
class PPListProbRecurrence {
// 鍦烘櫙鍞竴缂栧彿
+ @ApiModelProperty(value = "鍦烘櫙鍞竴缂栧彿")
var index: Int? = null
// 鍦烘櫙鍚嶇О
+ @ApiModelProperty(value = "鍦烘櫙鍚嶇О")
var sceneName: String? = null
// 鍦烘櫙绫诲瀷
+ @ApiModelProperty(value = "鍦烘櫙绫诲瀷")
var sceneType: String? = null
+ // 鐪佷唤鍚嶇О
+ @ApiModelProperty(value = "鐪佷唤鍚嶇О")
var provinceName: String? = null
+ // 鍩庡競鍚嶇О
+ @ApiModelProperty(value = "鍩庡競鍚嶇О")
var cityName: String? = null
+ // 鍖哄幙鍚嶇О
+ @ApiModelProperty(value = "鍖哄幙鍚嶇О")
var districtName: String? = null
+ // 涔¢晣鍚嶇О
+ @ApiModelProperty(value = "涔¢晣鍚嶇О")
var townName: String? = null
// 闂绫诲瀷
+ @ApiModelProperty(value = "闂绫诲瀷")
var problemType: String? = null
// 闂鍚嶇О
+ @ApiModelProperty(value = "闂鍚嶇О")
var problemName: String? = null
// 闂鏁�
+ @ApiModelProperty(value = "闂鏁�")
var proNum: Int = 0
// 鏁存敼鏁�
+ @ApiModelProperty(value = "鏁存敼鏁�")
var changeNum: Int = 0
}
\ No newline at end of file
--
Gitblit v1.9.3