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/AutoScoreResultVo.kt | 17 +++++++++++++++++
1 files changed, 17 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 f238900..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,24 +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