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 | 18 ++++++++++++++++++
1 files changed, 18 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 4ff51a7..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,23 +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