Points.java
1016 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
42
43
44
45
46
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 lombok.Data;
/**
* @author ricard
* @time 2019/2/26
* 货架实体
*/
@Data
@TableName(value = "points")
public class Points {
//id
@TableId(value = "id",type = IdType.AUTO)
private int id;
//仓库编码
@TableField
private String warehouseCode;
//货架号
@TableField
private String goodsShelfNo;
//货架调动次数
@TableField
private Integer num;
//是否可用
@TableField
private Integer isEnable;
//货架状态
@TableField
private Integer isLocked;
@TableField
private String intX;
@TableField
private String intY;
//出库前x位置
@TableField
private String oIntX;
//出库前Y位置
@TableField
private String oIntY;
}