郑永安
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
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 java.io.Serializable;
import java.util.Date;
 
@TableName("taskequipmentbind")
public class TaskEquipmentBindInfo 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;
 
    /** 设备条码  equipmentnumber **/
    @NotBlank(message = "设备条码不能为空")
    private String equipmentnumber;
 
    /** 设备名称  equipmentname **/
    private String equipmentname;
 
    /** 更新人  updateby **/
    private String updateby;
 
    /** 更新时间  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();
    }
 
    /**   设备条码  equipmentnumber   **/
    public String getEquipmentnumber() {
        return equipmentnumber;
    }
 
    /**   设备条码  equipmentnumber   **/
    public void setEquipmentnumber(String equipmentnumber) {
        this.equipmentnumber = equipmentnumber == null ? null : equipmentnumber.trim();
    }
 
    /**   设备名称  equipmentname   **/
    public String getEquipmentname() {
        return equipmentname;
    }
 
    /**   设备名称  equipmentname   **/
    public void setEquipmentname(String equipmentname) {
        this.equipmentname = equipmentname == null ? null : equipmentname.trim();
    }
 
    /**   更新人  updateby   **/
    public String getUpdateby() {
        return updateby;
    }
 
    /**   更新人  updateby   **/
    public void setUpdateby(String updateby) {
        this.updateby = updateby == null ? null : updateby.trim();
    }
 
    /**   更新时间  updatetime   **/
    public Date getUpdatetime() {
        return updatetime;
    }
 
    /**   更新时间  updatetime   **/
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
}