KeyInfo.java
1.87 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.ruoyi.domain.keyInfo;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import lombok.extern.slf4j.Slf4j;
import com.ruoyi.common.annotation.Excel;
@Data
@Slf4j
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@TableName("key_info")
public class KeyInfo {
/***ID*/
@TableId(value = "id", type = IdType.AUTO)
@Excel(name = "ID")
private Integer id;
/***名称(如:XX车的钥匙)*/
@Excel(name = "名称")
private String name;
/***状态*/
@Excel(name = "状态")
private Integer status;
/***是否删除*/
@Excel(name = "是否删除")
private Boolean delFlag;
/***创建人员*/
@Excel(name = "创建人员")
@TableField(fill= FieldFill.INSERT)
private String createBy;
/***创建时间*/
@Excel(name = "创建时间")
@TableField(fill= FieldFill.INSERT)
private java.util.Date createTime;
/***修改人员*/
@Excel(name = "修改人员")
@TableField(fill= FieldFill.UPDATE)
private String updateby;
/***修改时间*/
@Excel(name = "修改时间")
@TableField(fill= FieldFill.UPDATE)
private java.util.Date updateTime;
/***钥匙所在场站ID*/
@Excel(name = "钥匙所在场站ID")
private Integer yardId;
/***钥匙锁在的设备ID*/
private Integer deviceId;
@Excel(name = "钥匙锁在的设备ID")
@TableField(exist = false)
private String deviceLabel;
/***钥匙所在的位置*/
@Excel(name = "钥匙所在的位置")
private Integer cabinetno;
/***车牌号*/
@Excel(name = "车牌号")
private java.lang.String plateNum;
@Override
public String toString() {
return com.alibaba.fastjson2.JSON.toJSONString(this);
}
}