package cn.flightfeather.supervision.lightshare.vo
|
|
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 = "子任务guid")
|
var subTaskId:String? = null
|
@ApiModelProperty(value = "子任务时间")
|
var subTaskTime: Date? = null
|
@ApiModelProperty(value = "评估结果")
|
var evaluation: Evaluation? = null
|
@ApiModelProperty(value = "项评估结果")
|
var itemEvaluations: List<Itemevaluation?>? = null
|
}
|