BaseParkingLotGeo.java
2.62 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
package com.rnt.model.park.base;
import com.jfinal.plugin.activerecord.Model;
import com.jfinal.plugin.activerecord.IBean;
/**
* Generated by JFinal, do not modify this file.
*/
@SuppressWarnings({"serial", "unchecked"})
public abstract class BaseParkingLotGeo<M extends BaseParkingLotGeo<M>> extends Model<M> implements IBean {
public M setGeoId(java.lang.Long geoId) {
set("geo_id", geoId);
return (M)this;
}
public java.lang.Long getGeoId() {
return get("geo_id");
}
public M setLonId(java.math.BigDecimal lonId) {
set("lon_id", lonId);
return (M)this;
}
public java.math.BigDecimal getLonId() {
return get("lon_id");
}
public M setLatId(java.math.BigDecimal latId) {
set("lat_id", latId);
return (M)this;
}
public java.math.BigDecimal getLatId() {
return get("lat_id");
}
public M setGeoNo(java.lang.String geoNo) {
set("geo_no", geoNo);
return (M)this;
}
public java.lang.String getGeoNo() {
return get("geo_no");
}
public M setGeoName(java.lang.String geoName) {
set("geo_name", geoName);
return (M)this;
}
public java.lang.String getGeoName() {
return get("geo_name");
}
public M setGeoType(java.lang.Integer geoType) {
set("geo_type", geoType);
return (M)this;
}
public java.lang.Integer getGeoType() {
return get("geo_type");
}
public M setPlId(java.lang.Long plId) {
set("pl_id", plId);
return (M)this;
}
public java.lang.Long getPlId() {
return get("pl_id");
}
public M setPlName(java.lang.String plName) {
set("pl_name", plName);
return (M)this;
}
public java.lang.String getPlName() {
return get("pl_name");
}
public M setPlNo(java.lang.String plNo) {
set("pl_no", plNo);
return (M)this;
}
public java.lang.String getPlNo() {
return get("pl_no");
}
public M setDataStatus(java.lang.Integer dataStatus) {
set("data_status", dataStatus);
return (M)this;
}
public java.lang.Integer getDataStatus() {
return get("data_status");
}
public M setCreateTime(java.util.Date createTime) {
set("create_time", createTime);
return (M)this;
}
public java.util.Date getCreateTime() {
return get("create_time");
}
public M setCreateOp(java.lang.Long createOp) {
set("create_op", createOp);
return (M)this;
}
public java.lang.Long getCreateOp() {
return get("create_op");
}
public M setModiftyTime(java.util.Date modiftyTime) {
set("modifty_time", modiftyTime);
return (M)this;
}
public java.util.Date getModiftyTime() {
return get("modifty_time");
}
public M setModiftyOp(java.lang.Long modiftyOp) {
set("modifty_op", modiftyOp);
return (M)this;
}
public java.lang.Long getModiftyOp() {
return get("modifty_op");
}
}