Blame view

src/main/java/com/huaheng/pc/config/location/domain/Location.java 3.71 KB
mahuandong authored
1
package com.huaheng.pc.config.location.domain;
2
3
4
import com.baomidou.mybatisplus.annotation.*;
5
import java.io.Serializable;
mahuandong authored
6
import java.math.BigDecimal;
7
import java.util.Date;
mahuandong authored
8
9
import java.util.List;
10
import lombok.Data;
mahuandong authored
11
import org.springframework.transaction.annotation.Transactional;
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

@Data
@TableName(value = "location")
public class Location implements Serializable {
    /**
     * ID
     */
     @TableId(value = "id", type = IdType.AUTO)
    private Integer id;

    /**
     * 货位
     */
    @TableField(value = "code")
    private String code;

    /**
     * 仓库
     */
    @TableField(value = "warehouseCode")
    private String warehouseCode;

    /**
     * 区域
     */
    @TableField(value = "zoneCode")
    private String zoneCode;

    /**
     * 货位类型
     */
    @TableField(value = "locationType")
    private String locationType;

    /**
     * 容器编码
     */
    @TableField(value = "containerCode")
    private String containerCode;

    /**
     * 
     */
    @TableField(value = "iRow")
    private Integer iRow;

    /**
     * 
     */
    @TableField(value = "iColumn")
    private Integer iColumn;

    /**
     * 
     */
    @TableField(value = "iLayer")
    private Integer iLayer;

    /**
     * 
     */
    @TableField(value = "iGrid")
    private Integer iGrid;

    /**
游杰 authored
77
78
79
80
81
82
     * 内外侧标志
     */
    @TableField(value = "rowFlag")
    private Integer rowFlag;

    /**
mahuandong authored
83
84
85
86
87
88
     * 巷道
     */
    @TableField(value = "roadway")
    private String roadway;

    /**
89
90
91
92
93
94
95
96
     * 名称
     */
    @TableField(value = "name")
    private String name;

    /**
     * 状态
     */
mahuandong authored
97
98
    @TableField(value = "status")
    private String status;
99
100
101
102
103
104
105
106
107
108

    /**
     * 上次盘点日期
     */
    @TableField(value = "lastCycleCountDate")
    private Date lastCycleCountDate;

    /**
     * 创建时间
     */
109
    @TableField(value = "created", fill = FieldFill.INSERT)
110
111
112
113
114
    private Date created;

    /**
     * 创建用户
     */
115
    @TableField(value = "createdBy", fill = FieldFill.INSERT)
116
117
118
119
120
    private String createdBy;

    /**
     * 创建时间
     */
121
    @TableField(value = "lastUpdated", fill = FieldFill.INSERT_UPDATE)
122
123
124
125
126
    private Date lastUpdated;

    /**
     * 更新用户
     */
127
    @TableField(value = "lastUpdatedBy", fill = FieldFill.INSERT_UPDATE)
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
    private String lastUpdatedBy;

    /**
     * 数据版本
     */
    @TableField(value = "version")
    private Integer version;

    /**
     * 自定义字段1
     */
    @TableField(value = "userDef1")
    private String userDef1;

    /**
     * 自定义字段2
     */
    @TableField(value = "userDef2")
    private String userDef2;

    /**
     * 自定义字段3
     */
    @TableField(value = "userDef3")
    private String userDef3;

    /**
     * 自定义字段4
     */
    @TableField(value = "userDef4")
    private String userDef4;

    /**
     * 自定义字段5
     */
    @TableField(value = "userDef5")
    private String userDef5;

    /**
     * 自定义字段6
     */
    @TableField(value = "userDef6")
    private String userDef6;

    /**
     * 自定义字段7
     */
    @TableField(value = "userDef7")
    private String userDef7;

    /**
     * 自定义字段8
     */
    @TableField(value = "userDef8")
    private String userDef8;

    @TableField(value = "systemCreated")
    private Integer systemCreated;

    @TableField(value = "deleted")
    private Boolean deleted;
mahuandong authored
191
192
    @TableField(exist = false)
    private List<String> materialCode;
193
mahuandong authored
194
195
    @TableField(exist = false)
    private List<String> materialName;
196
mahuandong authored
197
198
    @TableField(exist = false)
    private List<String> batch;
199
mahuandong authored
200
201
    @TableField(exist = false)
    private List<BigDecimal> qty;
202
mahuandong authored
203
    private static final long serialVersionUID = 1L;
204
}