RfidScanLog.java
2.85 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package cn.csbr.springboot.dao.model;
import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Table(name = "rfid_scan_log")
public class RfidScanLog {
@Id
private String guid;
/**
* 货柜主键
*/
private String cabinetguid;
/**
* 货柜编码
*/
private String cabinetcode;
/**
* 扫描时间
*/
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date scantime;
/**
* 操作人
*/
private String userguid;
/**
* 操作人真实姓名
*/
private String userrealname;
/**
* @return guid
*/
public String getGuid() {
return guid;
}
/**
* @param guid
*/
public void setGuid(String guid) {
this.guid = guid;
}
/**
* This method returns the value of the 货柜主键
*
* @return cabinetguid - 货柜主键
*/
public String getCabinetguid() {
return cabinetguid;
}
/**
* This method set the value of the 货柜主键
*
* @param cabinetguid 货柜主键
*/
public void setCabinetguid(String cabinetguid) {
this.cabinetguid = cabinetguid;
}
/**
* This method returns the value of the 货柜编码
*
* @return cabinetcode - 货柜编码
*/
public String getCabinetcode() {
return cabinetcode;
}
/**
* This method set the value of the 货柜编码
*
* @param cabinetcode 货柜编码
*/
public void setCabinetcode(String cabinetcode) {
this.cabinetcode = cabinetcode;
}
/**
* This method returns the value of the 扫描时间
*
* @return scantime - 扫描时间
*/
public Date getScantime() {
return scantime;
}
/**
* This method set the value of the 扫描时间
*
* @param scantime 扫描时间
*/
public void setScantime(Date scantime) {
this.scantime = scantime;
}
/**
* This method returns the value of the 操作人
*
* @return userguid - 操作人
*/
public String getUserguid() {
return userguid;
}
/**
* This method set the value of the 操作人
*
* @param userguid 操作人
*/
public void setUserguid(String userguid) {
this.userguid = userguid;
}
/**
* This method returns the value of the 操作人真实姓名
*
* @return userrealname - 操作人真实姓名
*/
public String getUserrealname() {
return userrealname;
}
/**
* This method set the value of the 操作人真实姓名
*
* @param userrealname 操作人真实姓名
*/
public void setUserrealname(String userrealname) {
this.userrealname = userrealname;
}
}