Points.java
1.91 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
package com.huaheng.pc.config.points.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.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data;
/**
* @author ricard
* @time 2019/12/26
* 货架实体
*/
@ApiModel(value="com.huaheng.pc.config.points.domain.Points")
@TableName(value = "points")
@Data
public class Points {
//id
@TableId(value = "id", type = IdType.AUTO )
private Integer id;
//仓库编码
@TableField(value = "warehouseCode")
private String warehouseCode;
//仓库编码
@TableField(value = "uWarehouseCode")
private String uWarehouseCode;
@TableField(exist = false)
private String UWarehouseName;
//货架号
@TableField(value = "goodsShelfNo")
private String goodsShelfNo;
@TableField(exist = false)
private Integer companyId;
//货主
@TableField(value = "companyCode")
private String companyCode;
//货主名称
@TableField(exist = false)
private String companyName;
//货架调动次数
@TableField(value = "num")
private Integer num;
//是否为空
@TableField(value = "isEmpty")
private Integer isEmpty;
//是否可用
@TableField(value = "isEnable")
private Integer isEnable;
//货架状态
@TableField(value = "isLocked")
private Integer isLocked;
//回库后X轴位置
@TableField(value = "intX")
private String intX;
//回库后Y轴位置
@TableField(value = "intY")
private String intY;
//出库前x位置
@TableField(value = "oIntX")
private String oIntX;
//出库前Y位置
@TableField(value = "oIntY")
private String oIntY;
//站台号
@TableField(value = "station")
private String station;
}