-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHall.java
More file actions
261 lines (227 loc) · 4.9 KB
/
Hall.java
File metadata and controls
261 lines (227 loc) · 4.9 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
public class Hall {
private int auctionId;// id
private String pic;// 图片地址
private String desc;// 描述
private String level;// 评级
private String licence;// 车牌
private String registDate;// 上牌日期
private float distince;// 里程
private String startTime;// 开始时间
private String endTime;// 结束时间
private String now;// 当前时间
private float price;// 当前价格
private int isInterest;// 是否关注:0-未关注,1-已关注,2-出过价,3 被超过
private int offerMin;// 出价1
private int offer;// 出价2
private int offerMax;// 出价3
private long residueTime;// 剩余时间自己算
private float myPrice;// 我的出价
private int status;// 0未开始,4开始,0已结束,
private int type;// 是什么类型的 是交易成功还是 其他类型
private int isInnerAuction;// 是否是内场拍的
/** 所在城市 */
private String city;
/** 提车地址 */
private String address;
/** 需打款 可提车 **/
private float carFund;
/** 服务费 */
private float serviceCost;
/** 办证费 **/
private float certCost;
/** 代收费 **/
private float agentFee;
/** 出库费 **/
private float outFee;
/** 总费用 **/
private float allCost;
/** 金额 */
private float amount;
/** 用来区分是从哪个入口获得的数据 比如大厅的内场拍 正在竞拍 */
private int requstStatus;
public int getAuctionId() {
return auctionId;
}
public void setAuctionId(int auctionId) {
this.auctionId = auctionId;
}
public String getPic() {
return pic;
}
public void setPic(String pic) {
this.pic = pic;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public String getLicence() {
return licence;
}
public void setLicence(String licence) {
this.licence = licence;
}
public String getRegistDate() {
return registDate;
}
public void setRegistDate(String registDate) {
this.registDate = registDate;
}
public float getDistince() {
return distince;
}
public void setDistince(float distince) {
this.distince = distince;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getNow() {
return now;
}
public void setNow(String now) {
this.now = now;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public int getIsInterest() {
return isInterest;
}
public void setIsInterest(int isInterest) {
this.isInterest = isInterest;
}
public int getOfferMin() {
return offerMin;
}
public void setOfferMin(int offerMin) {
this.offerMin = offerMin;
}
public int getOffer() {
return offer;
}
public void setOffer(int offer) {
this.offer = offer;
}
public int getOfferMax() {
return offerMax;
}
public void setOfferMax(int offerMax) {
this.offerMax = offerMax;
}
public long getResidueTime() {
return residueTime;
}
public void setResidueTime(long residueTime) {
this.residueTime = residueTime;
}
public float getMyPrice() {
return myPrice;
}
public void setMyPrice(float myPrice) {
this.myPrice = myPrice;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getIsInnerAuction() {
return isInnerAuction;
}
public void setIsInnerAuction(int isInnerAuction) {
this.isInnerAuction = isInnerAuction;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public float getCarFund() {
return carFund;
}
public void setCarFund(float carFund) {
this.carFund = carFund;
}
public float getServiceCost() {
return serviceCost;
}
public void setServiceCost(float serviceCost) {
this.serviceCost = serviceCost;
}
public float getCertCost() {
return certCost;
}
public void setCertCost(float certCost) {
this.certCost = certCost;
}
public float getAgentFee() {
return agentFee;
}
public void setAgentFee(float agentFee) {
this.agentFee = agentFee;
}
public float getOutFee() {
return outFee;
}
public void setOutFee(float outFee) {
this.outFee = outFee;
}
public float getAllCost() {
return allCost;
}
public void setAllCost(float allCost) {
this.allCost = allCost;
}
public float getAmount() {
return amount;
}
public void setAmount(float amount) {
this.amount = amount;
}
public int getRequstStatus() {
return requstStatus;
}
public void setRequstStatus(int requstStatus) {
this.requstStatus = requstStatus;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return super.toString();
}
}