1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package cn.flightfeather.supervision.lightshare.vo
 
import com.fasterxml.jackson.annotation.JsonInclude
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
import java.util.*
import javax.persistence.Id
 
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "Inspection")
public class InspectionVo {
    @Id
    @ApiModelProperty(value = "巡查信息主键id")
    var guid: String? = null
 
    @ApiModelProperty(value = "巡查任务guid")
    var stguid: String? = null
 
    @ApiModelProperty(value = "场景id")
    var sguid: String? = null
 
    @ApiModelProperty(value = "场景名称")
    var scensename: String? = null
    @ApiModelProperty(value = "场景地址")
    var scenseaddress: String? = null
 
    var istogether: Boolean? = null
 
    var entouraget: String? = null
 
    var entouragewx: String? = null
 
    var entourage: String? = null
 
    @ApiModelProperty(value = "巡查开始时间")
    var executionstarttime: Date? = null
 
    @ApiModelProperty(value = "巡查结束时间")
    var executionendtime: Date? = null
    @ApiModelProperty(value = "问题数量")
    var problemcount: Int? = null
 
    /**
     * 全部复核则为true
     */
    @ApiModelProperty(value = "是否全部复核")
    var isrechecked: Boolean? = null
 
    @ApiModelProperty(value = "复核数量")
    var recheckcount: Int? = null
 
    @ApiModelProperty(value = "未完成数量")
    var promissednum: Int? = null
 
    @ApiModelProperty(value = "整改数量")
    var changednum: Int? = null
 
    /**
     * 全部整改则为true
     */
    @ApiModelProperty(value = "是否全部整改")
    var ischanged: Boolean? = null
 
    @ApiModelProperty(value = "是否已评估")
    var isrvaluated: Boolean? = null
 
    @ApiModelProperty(value = "是否未完成")
    var ispromissed: Boolean? = null
 
    var promissedtime: Date? = null
 
    var promisseduserguid: String? = null
 
    var promissedusername: String? = null
 
    var promisseduserrealname: String? = null
 
    var promissedway: String? = null
 
    /**
     * 记录截止时间
     */
    var promisseddeadline: Date? = null
 
    var promissbookpath: String? = null
 
    var signpath: String? = null
 
    var extension1: String? = null
 
    var extension2: String? = null
 
    var extension3: String? = null
 
    var remark: String? = null
 
    //问题列表
    var problemList:List<ProblemListVo> ?= null
 
    //技防措施列表
    var gitList:List<GitlistVo> ?= null
 
    //单项评分项
    var itemevaluationList:List<ItemEvaluationVo> ?= null
}