From 0f7b47105d80fb9a260486270cf925a232e74791 Mon Sep 17 00:00:00 2001
From: Riku <risaku@163.com>
Date: 星期一, 22 十二月 2025 21:20:13 +0800
Subject: [PATCH] 2025.12.22 1. 修改日任务统计接口,新增当天内整改问题数和48小时内整改问题数统计

---
 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