KuaidiWeight.java
1.12 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
package com.huaheng.pc.config.weight.domain;
import com.huaheng.framework.web.domain.BaseEntity;
import java.util.Date;
/**
* @ClassName Weight
* @Description TODO
* @Author Administrator
* @Date 2020/12/716:41
*/
public class KuaidiWeight extends BaseEntity {
private static final long serialVersionUID = 1L;
/** 出库id */
private Integer id;
/** 快递单号 */
private String trackCode;
/** 重量 */
private String weight;
/** 创建时间 */
private Date
created;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id
= id;
}
public String getTrackCode() {
return trackCode;
}
public void setTrackCode(String trackCode) {
this.trackCode
= trackCode;
}
public String getWeight() {
return weight;
}
public void setWeight(String weight) {
this.weight
= weight;
}
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created
= created;
}
}