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/InspectionVo.kt | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionVo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionVo.kt
index 322b538..2d35b17 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionVo.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/InspectionVo.kt
@@ -1,20 +1,27 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonInclude
+import io.swagger.annotations.ApiModel
+import io.swagger.annotations.ApiModelProperty
import java.util.*
import javax.persistence.Id
@JsonInclude(JsonInclude.Include.NON_NULL)
+@ApiModel(value = "Inspection")
public class InspectionVo {
@Id
+ @ApiModelProperty(value = "宸℃煡淇℃伅涓婚敭id")
var guid: String? = null
+ @ApiModelProperty(value = "宸℃煡浠诲姟guid")
var stguid: String? = null
+ @ApiModelProperty(value = "鍦烘櫙id")
var sguid: String? = null
+ @ApiModelProperty(value = "鍦烘櫙鍚嶇О")
var scensename: String? = null
-
+ @ApiModelProperty(value = "鍦烘櫙鍦板潃")
var scenseaddress: String? = null
var istogether: Boolean? = null
@@ -25,30 +32,39 @@
var entourage: String? = null
+ @ApiModelProperty(value = "宸℃煡寮�濮嬫椂闂�")
var executionstarttime: Date? = null
+ @ApiModelProperty(value = "宸℃煡缁撴潫鏃堕棿")
var executionendtime: Date? = null
-
+ @ApiModelProperty(value = "闂鏁伴噺")
var problemcount: Int? = null
/**
* 鍏ㄩ儴澶嶆牳鍒欎负true
*/
+ @ApiModelProperty(value = "鏄惁鍏ㄩ儴澶嶆牳")
var isrechecked: Boolean? = null
+ @ApiModelProperty(value = "澶嶆牳鏁伴噺")
var recheckcount: Int? = null
+ @ApiModelProperty(value = "鏈畬鎴愭暟閲�")
var promissednum: Int? = null
+ @ApiModelProperty(value = "鏁存敼鏁伴噺")
var changednum: Int? = null
/**
* 鍏ㄩ儴鏁存敼鍒欎负true
*/
+ @ApiModelProperty(value = "鏄惁鍏ㄩ儴鏁存敼")
var ischanged: Boolean? = null
+ @ApiModelProperty(value = "鏄惁宸茶瘎浼�")
var isrvaluated: Boolean? = null
+ @ApiModelProperty(value = "鏄惁鏈畬鎴�")
var ispromissed: Boolean? = null
var promissedtime: Date? = null
--
Gitblit v1.9.3