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/lightshare/vo/dataprod/middle/DPProblemCountByArea.kt | 41 +++++++++++++++++++++++++++++++++++++++--
1 files changed, 39 insertions(+), 2 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/dataprod/middle/DPProblemCountByArea.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/dataprod/middle/DPProblemCountByArea.kt
index bcd8b2a..6fb65d6 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/dataprod/middle/DPProblemCountByArea.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/dataprod/middle/DPProblemCountByArea.kt
@@ -1,38 +1,75 @@
package cn.flightfeather.supervision.lightshare.vo.dataprod.middle
+import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
/**
- *
+ * 鏁版嵁浜у搧闂鏁伴噺鎸夊尯鍩熸眹鎬讳俊鎭�
* @date 2025/9/15
* @author feiyu02
*/
+@ApiModel(value = "鏁版嵁浜у搧闂鏁伴噺鎸夊尯鍩熸眹鎬讳俊鎭�")
class DPProblemCountByArea {
+ /**
+ * 鐪佷唤缂栫爜
+ */
+ @ApiModelProperty(value = "鐪佷唤缂栫爜")
var provinceCode: String? = null
+ /**
+ * 鐪佷唤鍚嶇О
+ */
+ @ApiModelProperty(value = "鐪佷唤鍚嶇О")
var provinceName: String? = null
+ /**
+ * 鍩庡競缂栫爜
+ */
+ @ApiModelProperty(value = "鍩庡競缂栫爜")
var cityCode: String? = null
+ /**
+ * 鍩庡競鍚嶇О
+ */
+ @ApiModelProperty(value = "鍩庡競鍚嶇О")
var cityName: String? = null
+ /**
+ * 鍖哄幙缂栫爜
+ */
+ @ApiModelProperty(value = "鍖哄幙缂栫爜")
var districtCode: String? = null
+ /**
+ * 鍖哄幙鍚嶇О
+ */
+ @ApiModelProperty(value = "鍖哄幙鍚嶇О")
var districtName: String? = null
+ /**
+ * 涔¢晣缂栫爜
+ */
+ @ApiModelProperty(value = "涔¢晣缂栫爜")
var townCode: String? = null
+ /**
+ * 涔¢晣鍚嶇О
+ */
+ @ApiModelProperty(value = "涔¢晣鍚嶇О")
var townName: String? = null
/**
* 鍦烘櫙鏁伴噺
*/
+ @ApiModelProperty(value = "鍦烘櫙鏁伴噺")
var sceneCount: Int = 0
/**
* 闂鏁伴噺
*/
+ @ApiModelProperty(value = "闂鏁伴噺")
var problemCount: Int = 0
/**
* 鍗曞満鏅棶棰樻暟閲忓潎鍊�
*/
- var ratio: Double = 0.0
+ @ApiModelProperty(value = "鍗曞満鏅棶棰樻暟閲忓潎鍊�")
+ var proAvg: Double = 0.0
}
\ No newline at end of file
--
Gitblit v1.9.3