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

diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AutoScoreResultVo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AutoScoreResultVo.kt
index 335e3e1..88be586 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AutoScoreResultVo.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AutoScoreResultVo.kt
@@ -3,22 +3,41 @@
 import cn.flightfeather.supervision.domain.ds1.entity.Evaluation
 import cn.flightfeather.supervision.domain.ds1.entity.Itemevaluation
 import cn.flightfeather.supervision.domain.ds1.entity.Subtask
+import io.swagger.annotations.ApiModel
+import io.swagger.annotations.ApiModelProperty
 import java.util.*
 
 /**
  * 鑷姩璇勪及缁撴灉
  */
+@ApiModel(value = "鑷姩璇勪及缁撴灉")
 class AutoScoreResultVo {
+    @ApiModelProperty(value = "鐢ㄦ埛guid")
     var userId: String? = null
+    @ApiModelProperty(value = "鐢ㄦ埛鍚�")
     var userName: String? = null
+    @ApiModelProperty(value = "鏄惁鍚敤")
+    var isEnable: Boolean = true
+    @ApiModelProperty(value = "鍦烘櫙绱㈠紩")
+    var sceneIndex: Int? = null
+    @ApiModelProperty(value = "鍦烘櫙guid")
     var sceneId: String? = null
+    @ApiModelProperty(value = "鍦烘櫙鍚嶇О")
     var sceneName: String? = null
+    @ApiModelProperty(value = "涓�绾у満鏅悕绉�")
     var pName: String? = null
+    @ApiModelProperty(value = "浜岀骇鍦烘櫙鍚嶇О")
     var cName: String? = null
+    @ApiModelProperty(value = "涓夌骇鍦烘櫙鍚嶇О")
     var dName: String? = null
+    @ApiModelProperty(value = "鍥涚骇鍦烘櫙鍚嶇О")
     var tName: String? = null
+    @ApiModelProperty(value = "瀛愪换鍔uid")
     var subTaskId:String? = null
+    @ApiModelProperty(value = "瀛愪换鍔℃椂闂�")
     var subTaskTime: Date? = null
+    @ApiModelProperty(value = "璇勪及缁撴灉")
     var evaluation: Evaluation? = null
+    @ApiModelProperty(value = "椤硅瘎浼扮粨鏋�")
     var itemEvaluations: List<Itemevaluation?>? = null
 }
\ No newline at end of file

--
Gitblit v1.9.3