package cn.flightfeather.supervision.lightshare.vo
|
|
import cn.flightfeather.supervision.domain.ds1.entity.Scense
|
import io.swagger.annotations.ApiModel
|
import io.swagger.annotations.ApiModelProperty
|
|
@ApiModel("场景台账上传情况统计")
|
class SceneLedgerSummary {
|
|
@ApiModelProperty("对应飞羽环境系统中的用户id")
|
var tzUserId: String? = null
|
|
@ApiModelProperty("场景基本信息")
|
var scene: Scense? = null
|
|
@ApiModelProperty("统计时间,yyyy-mm")
|
var time: String? = null
|
|
@ApiModelProperty("完成情况,0:未提交;1:必填项部分提交;2:必填项全部提交;-1:未与飞羽环境系统连接,没有对应的用户id")
|
var summary: Int = -1
|
}
|