liusheng
昨天 e4e220916dd2a4aa649a9b0162e5b5ed0dc9d7e5
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package com.ruoyi.system.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 【请填写功能名称】对象 equipmentinfo
 * 
 * @author ruoyi
 * @date 2023-05-25
 */
public class Equipmentinfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 设备类别 */
    @Excel(name = "设备类别")
    private Long devtype;
 
    /** 设备名称 */
    @Excel(name = "设备名称")
    private String equipmentname;
 
    /** 设备型号 */
    @Excel(name = "设备型号")
    private String modnum;
 
    /** 投运日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "投运日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date touyundate;
 
    /** 购入日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "购入日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date gourudate;
 
    /** 制造单位 */
    @Excel(name = "制造单位")
    private String produce;
 
    /** 数量 */
    @Excel(name = "数量")
    private Long quantity;
 
    /** 计量单位 */
    @Excel(name = "计量单位")
    private String unit;
 
    /** 使用部门 */
    @Excel(name = "使用部门")
    private String useDept;
 
    /** 安装地点 */
    @Excel(name = "安装地点")
    private String storePlace;
 
    /** 技术数据 */
    @Excel(name = "技术数据")
    private String technData;
 
    /** 状态id */
    @Excel(name = "状态id")
    private Long statusid;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setDevtype(Long devtype) 
    {
        this.devtype = devtype;
    }
 
    public Long getDevtype() 
    {
        return devtype;
    }
    public void setEquipmentname(String equipmentname) 
    {
        this.equipmentname = equipmentname;
    }
 
    public String getEquipmentname() 
    {
        return equipmentname;
    }
    public void setModnum(String modnum) 
    {
        this.modnum = modnum;
    }
 
    public String getModnum() 
    {
        return modnum;
    }
    public void setTouyundate(Date touyundate) 
    {
        this.touyundate = touyundate;
    }
 
    public Date getTouyundate() 
    {
        return touyundate;
    }
    public void setGourudate(Date gourudate) 
    {
        this.gourudate = gourudate;
    }
 
    public Date getGourudate() 
    {
        return gourudate;
    }
    public void setProduce(String produce) 
    {
        this.produce = produce;
    }
 
    public String getProduce() 
    {
        return produce;
    }
    public void setQuantity(Long quantity) 
    {
        this.quantity = quantity;
    }
 
    public Long getQuantity() 
    {
        return quantity;
    }
    public void setUnit(String unit) 
    {
        this.unit = unit;
    }
 
    public String getUnit() 
    {
        return unit;
    }
    public void setUseDept(String useDept) 
    {
        this.useDept = useDept;
    }
 
    public String getUseDept() 
    {
        return useDept;
    }
    public void setStorePlace(String storePlace) 
    {
        this.storePlace = storePlace;
    }
 
    public String getStorePlace() 
    {
        return storePlace;
    }
    public void setTechnData(String technData) 
    {
        this.technData = technData;
    }
 
    public String getTechnData() 
    {
        return technData;
    }
    public void setStatusid(Long statusid) 
    {
        this.statusid = statusid;
    }
 
    public Long getStatusid() 
    {
        return statusid;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("devtype", getDevtype())
            .append("equipmentname", getEquipmentname())
            .append("modnum", getModnum())
            .append("touyundate", getTouyundate())
            .append("gourudate", getGourudate())
            .append("produce", getProduce())
            .append("quantity", getQuantity())
            .append("unit", getUnit())
            .append("useDept", getUseDept())
            .append("storePlace", getStorePlace())
            .append("technData", getTechnData())
            .append("remark", getRemark())
            .append("statusid", getStatusid())
            .toString();
    }
}