Blame view

src/main/java/com/huaheng/pc/config/station/domain/Station.java 2.55 KB
mahuandong authored
1
package com.huaheng.pc.config.station.domain;
mahuandong authored
2
3
4
5
6
7
8

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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
huhai authored
9
10
import lombok.Data;
mahuandong authored
11
12
13
14
15
16
17
import java.io.Serializable;
import java.util.Date;

/**
 * Created by Enzo Cotter on 2019/10/11.
 */
mahuandong authored
18
@ApiModel(value="com.huaheng.pc.config.station.domain.Station")
mahuandong authored
19
20
21
22
@Data
@TableName(value = "station")
public class Station implements Serializable {
    @TableId(value = "id", type = IdType.INPUT)
huhai authored
23
    @ApiModelProperty(value="标识")
mahuandong authored
24
25
26
    private Integer id;

    /**
27
28
29
30
31
32
33
     * 名称
     */
    @TableField(value = "name")
    @ApiModelProperty(value="名称")
    private String name;

    /**
mahuandong authored
34
35
36
37
38
39
40
     * 编码
     */
    @TableField(value = "code")
    @ApiModelProperty(value="编码")
    private String code;

    /**
41
42
43
44
45
46
47
     * 类型
     */
    @TableField(value = "type")
    @ApiModelProperty(value="类型")
    private String type;

    /**
mahuandong authored
48
49
50
51
52
53
54
     * 状态
     */
    @TableField(value = "status")
    @ApiModelProperty(value="状态")
    private Integer status;

    /**
55
56
57
58
59
60
61
     * 区域
     */
    @TableField(value = "area")
    @ApiModelProperty(value="区域")
    private Integer area;

    /**
tongzhonghao authored
62
63
64
65
66
67
68
     * 巷道
     */
    @TableField(value = "roadway")
    @ApiModelProperty(value="巷道")
    private Integer roadway;

    /**
mahuandong authored
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
     * 仓库编码
     */
    @TableField(value = "warehouseCode")
    @ApiModelProperty(value="仓库编码")
    private String warehouseCode;

    /**
     * 创建时间
     */
    @TableField(value = "created")
    @ApiModelProperty(value="创建时间")
    private Date created;

    /**
     * 创建者
     */
    @TableField(value = "createdBy")
    @ApiModelProperty(value="创建者")
    private String createdBy;

    /**
     * 更新时间
     */
    @TableField(value = "lastUpdated")
    @ApiModelProperty(value="更新时间")
    private Date lastUpdated;

    /**
     * 更新者
     */
    @TableField(value = "lastUpdatedBy")
    @ApiModelProperty(value="更新者")
    private String lastUpdatedBy;
周鸿 authored
103
104
105
106
107
108
    /**
     * 对接点位
     */
    @TableField(value = "connectCode")
    @ApiModelProperty(value="对接点位")
    private String connectCode;
109
110
111
112
113
114
    /**
     * 1立库站台,2地面站台
     */
    @TableField(value = "stationType")
    @ApiModelProperty(value="站台类型")
    private Integer stationType;
周鸿 authored
115
mahuandong authored
116
117
    private static final long serialVersionUID = 1L;
}