郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.Domain.Vo;
 
import com.gk.hotwork.Domain.EquipmentInfo;
import com.gk.hotwork.Domain.TaskEnclosure;
import com.gk.hotwork.Domain.TaskReview;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.List;
 
/**
 * @author : jingjy
 * @date : 2021/9/1 17:00
 */
public class TaskCheck {
    @NotBlank(message = "任务编码不能为空")
    private String code;
 
    private List<EquipmentInfo> equipments;
 
    private TaskReview taskReview;
 
    private String content;
 
    private List<TaskEnclosure>resources;
 
    private String checkDeviceList;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public TaskReview getTaskReview() {
        return taskReview;
    }
 
    public void setTaskReview(TaskReview taskReview) {
        this.taskReview = taskReview;
    }
 
    public List<EquipmentInfo> getEquipments() {
        return equipments;
    }
 
    public void setEquipments(List<EquipmentInfo> equipments) {
        this.equipments = equipments;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public List<TaskEnclosure> getResources() {
        return resources;
    }
 
    public void setResources(List<TaskEnclosure> resources) {
        this.resources = resources;
    }
 
    public String getCheckDeviceList() {
        return checkDeviceList;
    }
 
    public void setCheckDeviceList(String checkDeviceList) {
        this.checkDeviceList = checkDeviceList;
    }
}