From 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 30 十月 2025 15:58:45 +0800
Subject: [PATCH] 2025.10.30 新增单场景纵向统计接口
---
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