EquipmentSparepart.java
6.8 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package com.skua.modules.equipment.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.skua.core.aspect.annotation.Dict;
import com.skua.tool.annotation.BeanAnno;
import com.skua.tool.annotation.JoinSqlQueryAnno;
import com.skua.tool.enums.JoinSqlQueryEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.util.Date;
/**
* 备品备件表
* 【库存】
* 目前这个表存储了很多[物料]冗余字段,所以在操作[物料]时,需要同时维护这个表的冗余信息
*/
@Data
@TableName("equipment_sparepart")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "equipment_sparepart对象", description = "备品备件表")
public class EquipmentSparepart {
/**
* id
*/
@TableId(type = IdType.UUID)
@ApiModelProperty(value = "id")
private String id;
/**
* 备件编号
*/
@Excel(name = "备件编号", width = 15)
@ApiModelProperty(value = "备件编号")
@JoinSqlQueryAnno(joinSqlQueryEnum = JoinSqlQueryEnum.LIKE)
private String sparepartCode;
/**
* 备件名称
*/
@Excel(name = "备件名称", width = 15)
@ApiModelProperty(value = "备件名称")
@JoinSqlQueryAnno(joinSqlQueryEnum = JoinSqlQueryEnum.LIKE)
private String sparepartName;
@ApiModelProperty(value = "备件详细名称")
private String sparepartAlias;
private String sparepartAliass;
private String sparepartValue;
/**
* 备件类型
*/
@Excel(name = "备件类型", width = 15)
@ApiModelProperty(value = "备件类型")
@BeanAnno(targetFieldName = "sparepartType_dictText")
@JoinSqlQueryAnno(joinSqlQueryEnum = JoinSqlQueryEnum.EQ)
private String sparepartType;
/**
* 备件图片
*/
@Excel(name = "备件图片", width = 15)
@ApiModelProperty(value = "备件图片")
private String sparepartImg;
/**
* 更换周期
*/
@Excel(name = "更换周期", width = 15)
@ApiModelProperty(value = "更换周期")
private String changeCircle;
/**
* 规格型号
*/
@Excel(name = "规格型号", width = 15)
@ApiModelProperty(value = "规格型号")
@JoinSqlQueryAnno(joinSqlQueryEnum = JoinSqlQueryEnum.LIKE)
private String specification;
/**
* 生产厂商
*/
@Excel(name = "生产厂商", width = 15)
@ApiModelProperty(value = "生产厂商")
private String manufacturer;
/**
* 计量单位
*/
@Excel(name = "计量单位", width = 15)
@ApiModelProperty(value = "计量单位")
private String measuringUnit;
/**
* 库存金额
*/
@Excel(name = "库存金额", width = 15)
@ApiModelProperty(value = "库存金额")
private BigDecimal storageMoney;
/**
* 当前库存
*/
@Excel(name = "当前库存", width = 15)
@ApiModelProperty(value = "当前库存")
private BigDecimal storageNum;
/**
* 库存上限
*/
@Excel(name = "库存上限", width = 15)
@ApiModelProperty(value = "库存上限")
private BigDecimal storageMaxNum;
/**
* 库存下限
*/
@Excel(name = "库存下限", width = 15)
@ApiModelProperty(value = "库存下限")
private BigDecimal storageMinNum;
/**
* 材质
*/
@Excel(name = "材质", width = 15)
@ApiModelProperty(value = "材质")
private String texture;
/**
* 二维码
*/
@Excel(name = "二维码", width = 15)
@ApiModelProperty(value = "二维码")
private String qrCode;
/**
* 备注
*/
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注")
private String remark;
/**
* 版本(0/1)
*/
@Excel(name = "版本(0/1)", width = 15)
@ApiModelProperty(value = "版本(0/1)")
private Integer version;
/**
* 创建人id
*/
@Excel(name = "创建人id", width = 15)
@ApiModelProperty(value = "创建人id")
private String createBy;
/**
* 创建时间
*/
@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "创建时间")
private Date createTime;
/**
* 修改人id
*/
@Excel(name = "修改人id", width = 15)
@ApiModelProperty(value = "修改人id")
private String updateBy;
/**
* 修改时间
*/
@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private Date updateTime;
/**
* 所属部门
*/
@Excel(name = "所属部门", width = 15)
@ApiModelProperty(value = "所属部门")
private String createDept;
/**
* 所属公司
*/
@Excel(name = "所属公司", width = 15)
@ApiModelProperty(value = "所属公司")
private String createCmpy;
/**
* 删除标识,0:正常,1:删除
*/
@Excel(name = "删除标识,0:正常,1:删除", width = 15)
@ApiModelProperty(value = "删除标识,0:正常,1:删除")
private Integer delFlag;
@Excel(name = "备件单价", width = 15)
@ApiModelProperty(value = "备件单价")
private BigDecimal unitPrice;
@ApiModelProperty(value = "质量")
private String quality;
@ApiModelProperty(value = "实收数量")
private BigDecimal actualNum;
@ApiModelProperty(value = "排序字段")
private Integer orderNum;
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private Date inventoryUpdateTime;
/**
* 物资id
*/
@Excel(name = "物资id", width = 15)
@ApiModelProperty(value = "物资id")
private String suppliesId;
/**
* 仓库id
*/
@Excel(name = "仓库id", width = 15)
@ApiModelProperty(value = "仓库id")
private String suppliesWarehouseId;
/**
* 所属厂站
*/
@Excel(name = "所属厂站", width = 15)
@ApiModelProperty(value = "所属厂站")
private String departId;
/** 物料属性 */
@ApiModelProperty(value = "物料属性")
@Dict(dicCode = "sparepart_attribute")
private String sparepartAttribute;
}