郑永安
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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package com.gk.hotwork.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@TableName("taskgas")
public class TaskGasInfo implements Serializable {
    /** 作业气体浓度表  id **/
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 作业编号  taskcode **/
    @NotBlank(message = "作业编号不能为空")
    private String taskcode;
 
    /** 作业人员  taskworker **/
    private String taskworker;
 
    /** 气体类型  gastype **/
    @NotBlank(message = "气体类型不能为空")
    private String gastype;
 
    /** 气体浓度值  gasvalue **/
    @NotNull(message = "气体浓度值不能为空")
    private BigDecimal gasvalue;
 
    /** 气体单位  gasunit **/
    @NotBlank(message = "气体单位不能为空")
    private String gasunit;
 
    /** 是否报警  iswarn **/
    private Byte iswarn;
 
    /** 是否预警  isyujing **/
    private Byte isyujing;
 
    /** 是否发短信  issms **/
    private Byte issms;
 
    /** 是否处理  ismend **/
    private Byte ismend;
 
    /** 上传时间  updatetime **/
    private Date updatetime;
 
    /**   作业气体浓度表  id   **/
    public Long getId() {
        return id;
    }
 
    /**   作业气体浓度表  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**     taskcode   **/
    public String getTaskcode() {
        return taskcode;
    }
 
    /**     taskcode   **/
    public void setTaskcode(String taskcode) {
        this.taskcode = taskcode == null ? null : taskcode.trim();
    }
 
    /**   作业人员  taskworker   **/
    public String getTaskworker() {
        return taskworker;
    }
 
    /**   作业人员  taskworker   **/
    public void setTaskworker(String taskworker) {
        this.taskworker = taskworker == null ? null : taskworker.trim();
    }
 
    /**   气体类型  gastype   **/
    public String getGastype() {
        return gastype;
    }
 
    /**   气体类型  gastype   **/
    public void setGastype(String gastype) {
        this.gastype = gastype == null ? null : gastype.trim();
    }
 
    /**   气体浓度值  gasvalue   **/
    public BigDecimal getGasvalue() {
        return gasvalue;
    }
 
    /**   气体浓度值  gasvalue   **/
    public void setGasvalue(BigDecimal gasvalue) {
        this.gasvalue = gasvalue;
    }
 
    /**   气体单位  gasunit   **/
    public String getGasunit() {
        return gasunit;
    }
 
    /**   气体单位  gasunit   **/
    public void setGasunit(String gasunit) {
        this.gasunit = gasunit == null ? null : gasunit.trim();
    }
 
    /**   是否报警  iswarn   **/
    public Byte getIswarn() {
        return iswarn;
    }
 
    /**   是否报警  iswarn   **/
    public void setIswarn(Byte iswarn) {
        this.iswarn = iswarn;
    }
 
    /**   是否预警  isyujing   **/
    public Byte getIsyujing() {
        return isyujing;
    }
 
    /**   是否预警  isyujing   **/
    public void setIsyujing(Byte isyujing) {
        this.isyujing = isyujing;
    }
 
    /**   是否发短信  issms   **/
    public Byte getIssms() {
        return issms;
    }
 
    /**   是否发短信  issms   **/
    public void setIssms(Byte issms) {
        this.issms = issms;
    }
 
    /**   是否处理  ismend   **/
    public Byte getIsmend() {
        return ismend;
    }
 
    /**   是否处理  ismend   **/
    public void setIsmend(Byte ismend) {
        this.ismend = ismend;
    }
 
    /**   上传时间  updatetime   **/
    public Date getUpdatetime() {
        return updatetime;
    }
 
    /**   上传时间  updatetime   **/
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
}