KuaidiHeader.java
5.23 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
package com.huaheng.pc.shipment.kuaidiHeader.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 com.huaheng.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* 【请填写功能名称】表 kuaidi_header
*
* @author huaheng
* @date 2022-09-07
*/
@TableName(value = "kuaidi_header")
@Data
public class KuaidiHeader implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 出库id
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 出库单号
*/
@TableField(value = "code")
private String code;
/**
* 仓库Id
*/
@TableField(value = "warehouseId")
private Integer warehouseId;
/**
* 仓库编码
*/
@TableField(value = "warehouseCode")
private String warehouseCode;
/**
* u8仓库
*/
@TableField(value = "uWarehouseCode")
private String uWarehouseCode;
/**
* 货主id
*/
@TableField(value = "companyId")
@Excel(name = "公司ID")
private Integer companyId;
/**
* 货主code
*/
@TableField(value = "companyCode")
private String companyCode;
/** 上游系统单号 */
/**
* 出库单类型
*/
@TableField(value = "type")
private String type;
/**
* 数量
*/
@TableField(value = "totalQty")
private BigDecimal totalQty;
/**
* 总行数
*/
@TableField(value = "totalLines")
private Integer totalLines;
/**
* 备注
*/
@TableField(value = "remark")
@Excel(name = "备注")
private String remark;
/**
* 创建时间
*/
@TableField(value = "created")
private Date created;
/**
* 创建用户
*/
@TableField(value = "createdBy")
private String createdBy;
/**
* 最后修改时间
*/
@TableField(value = "lastUpdated")
private Date lastUpdated;
/**
* 更新用户
*/
@TableField(value = "lastUpdatedBy")
private String lastUpdatedBy;
/**
* 是否有效
*/
@TableField(value = "enable")
private Integer enable;
/**
* 删除标记
*/
@TableField(value = "deleted")
private Boolean deleted;
/**
* 自定义字段1
*/
@TableField(value = "userDef1")
private String userDef1;
/**
* 自定义字段1
*/
@TableField(value = "userDef2")
private String userDef2;
/**
* 自定义字段1
*/
@TableField(value = "userDef3")
private String userDef3;
/**
* 部门
*/
@TableField(value = "cDepName")
@Excel(name = "部门")
private String cDepName;
/**
* 收件人
*/
@TableField(value = "recName")
@Excel(name = "收件人")
private String recName;
/**
* 收件人号码
*/
@TableField(value = "recMobile")
@Excel(name = "收件人号码")
private String recMobile;
/**
* 收件人地址
*/
@TableField(value = "recAddr")
@Excel(name = "收件人地址")
private String recAddr;
/**
* 收件人公司
*/
@TableField(value = "recCompany")
@Excel(name = "收件人公司")
private String recCompany;
/**
* 发件人
*/
@TableField(value = "sendName")
@Excel(name = "发件人")
private String sendName;
/**
* 发件人号码
*/
@TableField(value = "sendMobile")
@Excel(name = "发件人号码")
private String sendMobile;
/**
* 发件人地址
*/
@TableField(value = "sendAddr")
@Excel(name = "发件人地址")
private String sendAddr;
/**
* 发件人公司
*/
@TableField(value = "sendCompany")
@Excel(name = "发件人公司")
private String sendCompany;
/**
* 重量
*/
@TableField(value = "totalWeight")
@Excel(name = "重量")
private String totalWeight;
@TableField(value = "openWeight")
private String openWeight;
/**
* 发货单号
*/
@TableField(value = "sourceCode")
@Excel(name = "发货单号")
private String sourceCode;
@TableField(value = "orderBill")
@Excel(name = "出库单号")
private String orderBill;
@TableField(value = "kuaidiCom")
@Excel(name = "快递公司")
private String kuaidiCom;
/**
* 快递单号
*/
@TableField(value = "trackCode")
@Excel(name = "快递单号")
private String trackCode;
@TableField(value = "kdEable")
private Long kdEable;
@TableField(value = "uploadStatus")
private Long uploadStatus;
@TableField(value = "kuaidiNum")
private String kuaidiNum;
@TableField(value = "picture")
private String picture;
@TableField(value = "status")
private Long status;
/** 上游系统单号 */
@TableField(exist = false)
private String fromCode;
}