OilStationSociety.java
2.96 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
145
146
147
148
149
150
151
152
153
package com.bsth.entity.realcontrol;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 社会加油站
* Created by panzhao on 2017/3/16.
*/
@Entity
@Table(name = "bsth_c_oil_station")
public class OilStationSociety {
@Id
private String lineCode;
/**
* 加油站名称
*/
private String stationName;
/**
* 加油站编码(为空则默认社会加油站)
*/
private String stationCode;
/**
* 上行进场距离
*/
private Double upInMile;
/**
* 上行出场距离
*/
private Double upOutMile;
/**
* 下行进场距离
*/
private Double downInMile;
/**
* 下行出场距离
*/
private Double downOutMile;
/**
* 上行进场时间 分钟
*/
private int upInTime;
/**
* 上行出场时间 分钟
*/
private int upOutTime;
/**
* 下行进场时间 分钟
*/
private int downInTime;
/**
* 下行出场时间 分钟
*/
private int downOutTime;
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
public Double getUpInMile() {
return upInMile;
}
public void setUpInMile(Double upInMile) {
this.upInMile = upInMile;
}
public Double getUpOutMile() {
return upOutMile;
}
public void setUpOutMile(Double upOutMile) {
this.upOutMile = upOutMile;
}
public Double getDownInMile() {
return downInMile;
}
public void setDownInMile(Double downInMile) {
this.downInMile = downInMile;
}
public Double getDownOutMile() {
return downOutMile;
}
public void setDownOutMile(Double downOutMile) {
this.downOutMile = downOutMile;
}
public int getUpInTime() {
return upInTime;
}
public void setUpInTime(int upInTime) {
this.upInTime = upInTime;
}
public int getUpOutTime() {
return upOutTime;
}
public void setUpOutTime(int upOutTime) {
this.upOutTime = upOutTime;
}
public int getDownInTime() {
return downInTime;
}
public void setDownInTime(int downInTime) {
this.downInTime = downInTime;
}
public int getDownOutTime() {
return downOutTime;
}
public void setDownOutTime(int downOutTime) {
this.downOutTime = downOutTime;
}
public String getStationCode() {
return stationCode;
}
public void setStationCode(String stationCode) {
this.stationCode = stationCode;
}
}