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