Vehicle.java
875 Bytes
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
package com.huaheng.pc.system.model.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.huaheng.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
@Data
public class Vehicle {
/** 车型 */
@TableField(value = "name")
@Excel(name = "型号")
private String name;
/** 名称 */
@TableField(value = "userDef1")
@Excel(name = "名称")
private String userDef1;
/** 数量 */
@TableField(value = "qty")
@Excel(name = "数量")
private Long qty;
/** 物料编码 */
@TableField(value = "code")
@Excel(name = "物料编码")
private String code;
/** 出库口 */
@TableField(value = "port")
@Excel(name = "出库站台")
private String port;
/** 物料类型 */
@TableField(value = "type")
@Excel(name = "物料类型")
private String type;
}