Blame view

src/main/java/com/huaheng/pc/config/points/domain/Points.java 1.99 KB
pengcheng authored
1
2
3
4
5
6
7
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;
xqs authored
8
pengcheng authored
9
import io.swagger.annotations.ApiModel;
周鸿 authored
10
import lombok.Data;
xqs authored
11
pengcheng authored
12
13
14
15
16
17
18
19
20

/**
 * @author ricard
 * @time 2019/12/26
 * 货架实体
 */

@ApiModel(value="com.huaheng.pc.config.points.domain.Points")
@TableName(value = "points")
周鸿 authored
21
@Data
22
public class Points  {
pengcheng authored
23
24
25
26
27
28
29
30
    //id
    @TableId(value = "id", type = IdType.AUTO )
    private Integer id;

    //仓库编码
    @TableField(value = "warehouseCode")
    private String warehouseCode;
31
32
33
34
 //仓库编码
 @TableField(value = "uWarehouseCode")
 private String uWarehouseCode;
xumiao authored
35
36
37
 @TableField(exist = false)
 private String UWarehouseName;
pengcheng authored
38
39
40
   //货架号
   @TableField(value = "goodsShelfNo")
    private String goodsShelfNo;
41
42

    @TableField(exist = false)
pengcheng authored
43
44
45
46
47
48
    private Integer companyId;

    //货主
    @TableField(value = "companyCode")
    private String companyCode;
    //货主名称
49
    @TableField(exist = false)
pengcheng authored
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
    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;
周鸿 authored
83
84
85
    //站台号
    @TableField(value = "station")
    private String station;
86
87
88
    //常规属性
    @TableField(value = "common")
    private Integer common;
pengcheng authored
89
90

}