BaseAirPort.java
1.1 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
package com.air.model.base;
import com.teplot.common._BaseModel;
import com.jfinal.plugin.activerecord.IBean;
@SuppressWarnings("serial")
public abstract class BaseAirPort<M extends BaseAirPort<M>> extends _BaseModel<M> implements IBean {
public void setId(java.lang.Integer id) {
set("id", id);
}
public java.lang.Integer getId() {
return get("id");
}
public void setStationArea(java.lang.String stationArea) {
set("stationArea", stationArea);
}
public java.lang.String getStationArea() {
return get("stationArea");
}
public void setPortNo(java.lang.Integer portNo) {
set("portNo", portNo);
}
public java.lang.Integer getPortNo() {
return get("portNo");
}
public void setIsArrival(java.lang.Boolean isArrival) {
set("isArrival", isArrival);
}
public java.lang.Boolean getIsArrival() {
return get("isArrival");
}
public void setCarNo(java.lang.String carNo) {
set("carNo", carNo);
}
public java.lang.String getCarNo() {
return get("carNo");
}
public void setWaitCount(java.lang.Integer waitCount) {
set("waitCount", waitCount);
}
public java.lang.Integer getWaitCount() {
return get("waitCount");
}
}