Cabinet.java
1.25 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
package cn.csbr.springboot.dao.model;
import cn.hutool.core.date.DateTime;
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 = "cabinet")
public class Cabinet {
/**
* 主键
*/
@Id
private String guid;
public String getGuid() {
return guid;
}
public void setGuid(String guid) {
this.guid = guid;
}
public String getGroupcode() {
return groupcode;
}
public void setGroupcode(String groupcode) {
this.groupcode = groupcode;
}
public String getCabinetcode() {
return cabinetcode;
}
public void setCabinetcode(String cabinetcode) {
this.cabinetcode = cabinetcode;
}
public String getStoreguid() {
return storeguid;
}
public void setStoreguid(String storeguid) {
this.storeguid = storeguid;
}
public String getStorename() {
return storename;
}
public void setStorename(String storename) {
this.storename = storename;
}
private String groupcode;
private String cabinetcode;
private String storeguid;
private String storename;
}