Entercancel.java
3.5 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
/**
*
*/
package com.thinkgem.jeesite.modules.land.entity;
import org.hibernate.validator.constraints.Length;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 运单冻结核销Entity
* @author zhang
* @version 2019-05-20
*/
public class Entercancel extends DataEntity<Entercancel> {
private static final long serialVersionUID = 1L;
private String vename; // vename
private String veCompanyName; // ve_company_name
private String agentname; // agentname
private String businesstype; // businesstype
private String manifest; // manifest
private String weight; // weight
private String grosswt; // grosswt
private String goodname; // goodname
private String startport; // startport
private String endport; // endport
private String isfreeze; // isfreeze
private Date createTime; // create_time
private Date updateTime; // update_time
public Entercancel() {
super();
}
public Entercancel(String id){
super(id);
}
@Length(min=0, max=10, message="vename长度必须介于 0 和 10 之间")
public String getVename() {
return vename;
}
public void setVename(String vename) {
this.vename = vename;
}
@Length(min=0, max=64, message="ve_company_name长度必须介于 0 和 64 之间")
public String getVeCompanyName() {
return veCompanyName;
}
public void setVeCompanyName(String veCompanyName) {
this.veCompanyName = veCompanyName;
}
@Length(min=0, max=64, message="agentname长度必须介于 0 和 64 之间")
public String getAgentname() {
return agentname;
}
public void setAgentname(String agentname) {
this.agentname = agentname;
}
@Length(min=0, max=8, message="businesstype长度必须介于 0 和 8 之间")
public String getBusinesstype() {
return businesstype;
}
public void setBusinesstype(String businesstype) {
this.businesstype = businesstype;
}
@Length(min=0, max=12, message="manifest长度必须介于 0 和 12 之间")
public String getManifest() {
return manifest;
}
public void setManifest(String manifest) {
this.manifest = manifest;
}
public String getWeight() {
return weight;
}
public void setWeight(String weight) {
this.weight = weight;
}
public String getGrosswt() {
return grosswt;
}
public void setGrosswt(String grosswt) {
this.grosswt = grosswt;
}
@Length(min=0, max=32, message="goodname长度必须介于 0 和 32 之间")
public String getGoodname() {
return goodname;
}
public void setGoodname(String goodname) {
this.goodname = goodname;
}
@Length(min=0, max=16, message="startport长度必须介于 0 和 16 之间")
public String getStartport() {
return startport;
}
public void setStartport(String startport) {
this.startport = startport;
}
@Length(min=0, max=16, message="endport长度必须介于 0 和 16 之间")
public String getEndport() {
return endport;
}
public void setEndport(String endport) {
this.endport = endport;
}
@Length(min=0, max=2, message="isfreeze长度必须介于 0 和 2 之间")
public String getIsfreeze() {
return isfreeze;
}
public void setIsfreeze(String isfreeze) {
this.isfreeze = isfreeze;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}