Zone.java
2.62 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
package com.huaheng.pc.general.zone.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
import java.io.Serializable;
/**
* 库区实体类
* @author ricard
* @Date 19.8.6
*
*/
@Data
@TableName(value = "zone")
public class Zone implements Serializable {
//唯一值Id
@TableId(value = "id",type = IdType.AUTO)
private Integer id;
//库区区域
private String code;
//仓库ID
private Integer warehouseId;
//仓库编码
private String warehouseCode;
//货主编码
private String companyCode;
//库区名称
private String name;
//库位类型
private String locationType;
//创建时间
private Date created;
//创建人
private String createdBy;
//更新时间
private Date lastupdated;
//更新人
private String lastupdatedBy;
//数据版本
private Integer version;
//自定义字段1
private String userDef1;
//自定义字段1
private String userDef2;
//自定义字段1
private String userDef3;
//自定义字段1
private String userDef4;
//自定义字段1
private String userDef5;
//自定义字段1
private String userDef6;
//自定义字段1
private String userDef7;
//自定义字段1
private String userDef8;
//处理标记
private String processStamp;
@Override
public String toString() {
return "Zone{" +
"id=" + id +
", code='" + code + '\'' +
", warehouseId=" + warehouseId +
", warehouseCode='" + warehouseCode + '\'' +
", companyCode='" + companyCode + '\'' +
", name='" + name + '\'' +
", locationType='" + locationType + '\'' +
", created=" + created +
", createdBy='" + createdBy + '\'' +
", lastupdated=" + lastupdated +
", lastupdatedBy='" + lastupdatedBy + '\'' +
", version=" + version +
", userDef1='" + userDef1 + '\'' +
", userDef2='" + userDef2 + '\'' +
", userDef3='" + userDef3 + '\'' +
", userDef4='" + userDef4 + '\'' +
", userDef5='" + userDef5 + '\'' +
", userDef6='" + userDef6 + '\'' +
", userDef7='" + userDef7 + '\'' +
", userDef8='" + userDef8 + '\'' +
", processStamp='" + processStamp + '\'' +
'}';
}
}