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/InspectionInfoVo.kt |   19 ++++++++++++++++++-
 1 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionInfoVo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionInfoVo.kt
index 8f363bd..8324859 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionInfoVo.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionInfoVo.kt
@@ -2,40 +2,57 @@
 
 import com.fasterxml.jackson.annotation.JsonFormat
 import com.fasterxml.jackson.annotation.JsonInclude
+import io.swagger.annotations.ApiModel
+import io.swagger.annotations.ApiModelProperty
 import org.apache.xpath.operations.Bool
 import java.time.LocalDateTime
 import java.util.*
 
 @JsonInclude(JsonInclude.Include.NON_NULL)
+@ApiModel(value = "宸℃煡淇℃伅")
 class InspectionInfoVo {
 
     //椤跺眰浠诲姟id
+    @ApiModelProperty(value = "椤跺眰浠诲姟id")
     var topTaskid: String? = null
     //椤跺眰浠诲姟鍚嶇О
+    @ApiModelProperty(value = "椤跺眰浠诲姟鍚嶇О")
     var topTaskName: String? = null
     //鍦烘櫙id
+    @ApiModelProperty(value = "鍦烘櫙id")
     var sceneId: String? = null
     //鍦烘櫙鍚嶇О
+    @ApiModelProperty(value = "鍦烘櫙鍚嶇О")
     var sceneName: String? = null
     //宸℃煡id
+    @ApiModelProperty(value = "宸℃煡id")
     var inspectionId: String? = null
     //瀛愪换鍔d
+    @ApiModelProperty(value = "瀛愪换鍔d")
     var subtaskId: String? = null
     //鏄惁宸茬洃绠�
+    @ApiModelProperty(value = "鏄惁宸茬洃绠�")
     var inspected: Boolean? = null
     //鐩戠鏃堕棿
+    @ApiModelProperty(value = "鐩戠鏃堕棿")
     @JsonFormat(pattern = "yyyy-MM-dd")
     var inspectionTime: Date? = null
     //鐩戠娆℃暟
+    @ApiModelProperty(value = "鐩戠娆℃暟")
     var inspectionTimes: Int? = null
-    //鏄惁鎵胯
+    //鏄惁鎵胯鏁存敼
+    @ApiModelProperty(value = "鏄惁鎵胯鏁存敼")
     var promised: Boolean? = null
     //鏄惁鍏ㄩ儴鏁存敼
+    @ApiModelProperty(value = "鏄惁鍏ㄩ儴鏁存敼")
     var changed: Boolean? = null
     //寰呮暣鏀归棶棰樻暟
+    @ApiModelProperty(value = "寰呮暣鏀归棶棰樻暟")
     var unChangedCount: Int? = null
     //宸叉暣鏀归棶棰樻暟
+    @ApiModelProperty(value = "宸叉暣鏀归棶棰樻暟")
     var changedCount: Int? = null
     //鎵胯鏁存敼鏃堕棿, YYYY骞碝M鏈圖D鏃�
+    @ApiModelProperty(value = "鎵胯鏁存敼鏃堕棿, YYYY骞碝M鏈圖D鏃�")
     var promisedTime: String? = null
 }
\ No newline at end of file

--
Gitblit v1.9.3