EquipmentSparepartSupplies.java
8.0 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
package com.skua.modules.supplies.entity;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* 物料信息表
*/
@Data
@TableName("equipment_sparepart_supplies")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "equipment_sparepart_supplies对象", description = "物料信息表")
public class EquipmentSparepartSupplies {
/**
* id
*/
@TableId(type = IdType.ID_WORKER_STR)
@ApiModelProperty(value = "id")
private String id;
/**所属厂区*/
@Excel(name = "所属厂区", width = 15)
@ApiModelProperty(value = "所属厂区")
@Dict(dictTable = "sys_depart", dicCode="id", dicText = "depart_name")
private String departId;
/**
* 物料编号
*/
@Excel(name = "物料编号", width = 15)
@ApiModelProperty(value = "物料编号")
private String sparepartCode;
/**
* 物料名称
*/
@Excel(name = "物料名称", width = 15)
@ApiModelProperty(value = "物料名称")
private String sparepartName;
/**
* 物料类型
*/
@Excel(name = "物料类型", width = 15)
@ApiModelProperty(value = "物料类型")
@Dict(dicCode = "id", dictTable = "equipment_sparepart_type", dicText = "item_text")
private String sparepartType;
/**
* 物料图片
*/
@ApiModelProperty(value = "物料图片")
private String sparepartImg;
/**
* 更换周期
*/
@Excel(name = "更换周期", width = 15)
@ApiModelProperty(value = "更换周期")
private String changeCircle;
/**
* 规格型号
*/
@Excel(name = "规格型号", width = 15)
@ApiModelProperty(value = "规格型号")
private String specification;
/**
* 生产厂商
*/
@Excel(name = "生产厂商", width = 15)
@ApiModelProperty(value = "生产厂商")
@Dict(dicCode = "id",dictTable = "`equipment_brand`",dicText = "brand_company")
private String manufacturer;
/**
* 计量单位
*/
@Excel(name = "计量单位", width = 15)
@ApiModelProperty(value = "计量单位")
private String measuringUnit;
/**
* 库存金额
*/
@Excel(name = "库存金额", width = 15)
@ApiModelProperty(value = "库存金额")
private java.math.BigDecimal storageMoney;
/**
* 库存上限
*/
@Excel(name = "库存上限", width = 15)
@ApiModelProperty(value = "库存上限")
private java.math.BigDecimal storageMaxNum;
/**
* 库存下限
*/
@Excel(name = "库存下限", width = 15)
@ApiModelProperty(value = "库存下限")
private java.math.BigDecimal storageMinNum;
/**
* 当前库存
*/
@Excel(name = "当前总库存", width = 15)
@ApiModelProperty(value = "当前总库存")
private BigDecimal storageNum;
/**
* 材质
*/
@Excel(name = "材质", width = 15)
@ApiModelProperty(value = "材质")
private String texture;
/**
* 二维码
*/
@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 java.math.BigDecimal unitPrice;
/**
* 备件名称值
*/
@Excel(name = "备件名称值", width = 15)
@ApiModelProperty(value = "备件名称值")
private String sparepartValue;
/**
* 备件详细名称
*/
@Excel(name = "备件详细名称", width = 15)
@ApiModelProperty(value = "备件详细名称")
private String sparepartAlias;
/**
* 备件详细名称2
*/
@Excel(name = "备件详细名称2", width = 15)
@ApiModelProperty(value = "备件详细名称2")
private String sparepartAliass;
/**
* 类别大类
*/
@Excel(name = "类别大类", width = 15)
@ApiModelProperty(value = "类别大类")
private String topType;
/**
* 类别树路径
*/
@Excel(name = "类别树路径", width = 15)
@ApiModelProperty(value = "类别树路径")
private String typeTreePath;
/**
* 排序字段
*/
@Excel(name = "排序字段", width = 15)
@ApiModelProperty(value = "排序字段")
private Integer orderNum;
/**
* 生成时间
*/
@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 inventoryUpdateTime;
/** 物料属性 */
@Excel(name = "物料属性", width = 15)
@ApiModelProperty(value = "物料属性")
@Dict(dicCode = "sparepart_attribute")
private String sparepartAttribute;
@ApiModelProperty(value = "扩展:物料用途")
@TableField(exist=false)
private String purpose;
@ApiModelProperty(value = "扩展:物料类别名称")
@TableField(exist=false)
private String sparepartTypeName;
@ApiModelProperty(value = "扩展:去年出库数量")
@TableField(exist=false)
private String outNum;
@TableField(exist=false)
@ApiModelProperty(value = "扩展:总价")
private String totalPrice;
@TableField(exist=false)
@ApiModelProperty(value = "扩展:计划采购数量")
private String purchaseNum;
@TableField(exist=false)
@ApiModelProperty(value = "扩展:货号")
private String goodCode;
@TableField(exist=false)
@ApiModelProperty(value = "扩展:计划采购数量")
private String sparepartId;
public String getSparepartId() {
return id;
}
public String getOutNum(){
if(this.outNum == null ){
return "0";
}
return this.outNum;
}
}