feiyu02
2024-11-21 9de446b0b83610055437fbc5172d216bb374900f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}