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