LocationHigh.java
1.21 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
package com.huaheng.pc.config.locationHigh.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
@TableName(value = "location_high")
public class LocationHigh implements Serializable {
/**
* 内部号
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 编码
*/
@TableField(value = "code")
private String code;
/**
* 仓库编码
*/
@TableField(value = "warehouseCode")
private String warehouseCode;
/**
* 库位类型编码
*/
@TableField(value = "locationTypeCode")
private String locationTypeCode;
/**
* 高低位
*/
@TableField(value = "high")
private Integer high;
/**
* 高度值
*/
@TableField(value = "highLevel")
private Integer highLevel;
/**
* 顺序
*/
@TableField(value = "sequence")
private Integer sequence;
/**
* 创建时间
*/
@TableField(value = "created", fill = FieldFill.INSERT)
private Date created;
/**
* 创建用户
*/
@TableField(value = "createdBy", fill = FieldFill.INSERT)
private String createdBy;
}