KuaidiWeight.java
1.88 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
package com.huaheng.pc.config.weight.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
/**
* @ClassName Weight
* @Description TODO
* @Author Administrator
* @Date 2020/12/716:41
*/
@Data
@TableName(value = "kuaidi_weight")
public class KuaidiWeight {
private static final long serialVersionUID = 1L;
/**
* 出库id
*/
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value = "id")
private Integer id;
/**
* 快递单号
*/
@TableField(value = "trackCode")
@ApiModelProperty(value = "快递单号")
private String trackCode;
/**
* 重量
*/
@TableField(value = "weight")
@ApiModelProperty(value = "重量")
private String weight;
/**
* 仓库
*/
@TableField(value = "warehouseCode")
@ApiModelProperty(value = "仓库")
private String warehouseCode;
/**
* 创建时间
*/
@TableField(value = "created")
@ApiModelProperty(value = "创建时间")
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;
}
}