EquipmentOut.java
4.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
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 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.util.Date;
/**
* 出库
*/
@Data
@TableName("equipment_out")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "equipment_out对象", description = "出库")
public class EquipmentOut {
/**
* id
*/
@TableId(type = IdType.UUID)
@ApiModelProperty(value = "id")
@BeanAnno(targetFieldName = "sparepartName")
private String id;
/**
* 所属机构
*/
@ApiModelProperty(value = "所属机构")
@BeanAnno(targetFieldName = "departIdName")
@Dict(dictTable = "sys_depart", dicCode="id", dicText = "depart_name")
private String departId;
/**
* 出库单号
*/
@Excel(name = "出库单号", width = 15)
@ApiModelProperty(value = "出库单号")
private String outOrder;
/**
* 出库类型
*/
@Excel(name = "出库类型", width = 15)
@ApiModelProperty(value = "出库类型")
@Dict(dicCode = "ckType")
private String outType;
/**
* 出库时间
*/
@Excel(name = "出库时间", width = 15)
@ApiModelProperty(value = "出库时间")
private String outDate;
/**
* 备注
*/
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注")
private String remark;
/**
* 使用人(经办人)
*/
@ApiModelProperty(value = "经办人")
@BeanAnno(targetFieldName = "useByName")
@Dict(dicCode = "id", dictTable = "sys_user", dicText = "realname")
private String useBy;
/**
* 领用人
*/
@ApiModelProperty(value = "领用人")
@BeanAnno(targetFieldName = "recipient_dictText")
@Dict(dicCode = "id", dictTable = "sys_user", dicText = "realname")
private String recipient;
/**
* 创建人id
*/
@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
*/
@ApiModelProperty(value = "修改人id")
private String updateBy;
/**
* 修改时间
*/
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private Date updateTime;
/**
* 所属部门
*/
@ApiModelProperty(value = "所属部门")
private String createDept;
/**
* 所属公司
*/
@ApiModelProperty(value = "所属公司")
private String createCmpy;
/**
* 所属仓库
*/
@ApiModelProperty(value = "所属仓库")
@BeanAnno(targetFieldName = "suppliesWarehouseId_dictText")
@Dict(dicCode = "id", dictTable = "supplies_warehouse", dicText = "warehouse_name")
private String suppliesWarehouseId;
/**
* 删除标识,0:正常,1:删除
*/
@ApiModelProperty(value = "删除标识,0:正常,1:删除")
private Integer delFlag;
@BeanAnno(targetFieldName = "departCode_dictText")
private String departCode;
/**
* 经办时间
*/
@ApiModelProperty(value = "经办时间")
private String chooseTime;
/**
* 库存更新时间
*/
@ApiModelProperty(value = "库存更新时间")
private Date inventoryUpdateTime;
}