#
Junjie
1 天以前 ff3b5df7015b2f2c5e24d9973a7b443309d8e579
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.zy.asrs.entity;
 
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableField;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("asr_bas_map")
public class BasMap implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 地图数据
     */
    @ApiModelProperty(value= "地图数据")
    private String data;
 
    /**
     * 创建时间
     */
    @ApiModelProperty(value= "创建时间")
    @TableField("create_time")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @ApiModelProperty(value= "更新时间")
    @TableField("update_time")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    /**
     * 更新前地图数据
     */
    @ApiModelProperty(value= "更新前地图数据")
    @TableField("last_data")
    private String lastData;
 
    /**
     * 楼层
     */
    @ApiModelProperty(value= "楼层")
    @TableField("lev")
    private Integer lev;
 
    /**
     * 原始地图
     */
    @ApiModelProperty(value= "原始地图")
    @TableField("origin_data")
    private String originData;
 
    /**
     * 基准排
     */
    @ApiModelProperty(value= "基准排")
    @TableField("base_row")
    private Integer baseRow;
 
    /**
     * 基准排-code值
     */
    @ApiModelProperty(value= "基准排-code值")
    @TableField("base_row_code")
    private Integer baseRowCode;
 
    /**
     * 基准列
     */
    @ApiModelProperty(value= "基准列")
    @TableField("base_bay")
    private Integer baseBay;
 
    /**
     * 基准列-code值
     */
    @ApiModelProperty(value= "基准列-code值")
    @TableField("base_bay_code")
    private Integer baseBayCode;
 
    public BasMap() {}
 
    public BasMap(String data,Date createTime,Date updateTime,String lastData,Integer lev) {
        this.data = data;
        this.createTime = createTime;
        this.updateTime = updateTime;
        this.lastData = lastData;
        this.lev = lev;
    }
 
//    BasMap basMap = new BasMap(
//            null,    // 地图数据
//            null,    // 创建时间
//            null,    // 更新时间
//            null    // 更新前地图数据
//    );
 
    public String getCreateTime$(){
        if (Cools.isEmpty(this.createTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime);
    }
 
    public String getUpdateTime$(){
        if (Cools.isEmpty(this.updateTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
    }
 
 
}