OrderVO.java
3.16 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.rnt.vo;
import java.math.BigDecimal;
import java.util.Date;
public class OrderVO {
/** 订单id. */
private String orderId;
/** 停车场id. */
private String parkId;
/** 停车场名称. */
private String parkName;
/**停车场地址.*/
private String parkAddress;
/** 车牌号. */
private String carNumber;
/** 已支付费用. */
private BigDecimal orderPayedFee;
/** 未支付费用(本次应付金额). */
private BigDecimal orderNotPayFee;
/** 订单总金额=未支付费用+已支付费用. */
private BigDecimal orderTotalFee;
/** 订单标题. */
private String orderTitle;
/** 车辆进场时间. */
private Date parkInTime;
/** 车辆出场时间. */
private Date parkOutTime;
/** 停车时长 单位:小时格式:02小时52分. */
private String parkingDuration;
public String getParkAddress() {
return parkAddress;
}
public void setParkAddress(String parkAddress) {
this.parkAddress = parkAddress == null ? null : parkAddress.trim();
}
public String getOrderId() {
return orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId == null ? null : orderId.trim();
}
public String getParkId() {
return parkId;
}
public void setParkId(String parkId) {
this.parkId = parkId == null ? null : parkId.trim();
}
public String getCarNumber() {
return carNumber;
}
public void setCarNumber(String carNumber) {
this.carNumber = carNumber == null ? null : carNumber.trim();
}
public BigDecimal getOrderPayedFee() {
return orderPayedFee;
}
public void setOrderPayedFee(BigDecimal orderPayedFee) {
this.orderPayedFee = orderPayedFee;
}
public BigDecimal getOrderNotPayFee() {
return orderNotPayFee;
}
public void setOrderNotPayFee(BigDecimal orderNotPayFee) {
this.orderNotPayFee = orderNotPayFee;
}
public BigDecimal getOrderTotalFee() {
return orderTotalFee;
}
public void setOrderTotalFee(BigDecimal orderTotalFee) {
this.orderTotalFee = orderTotalFee;
}
public String getOrderTitle() {
return orderTitle;
}
public void setOrderTitle(String orderTitle) {
this.orderTitle = orderTitle == null ? null : orderTitle.trim();
}
public Date getParkInTime() {
return parkInTime;
}
public void setParkInTime(Date parkInTime) {
this.parkInTime = parkInTime;
}
public Date getParkOutTime() {
return parkOutTime;
}
public void setParkOutTime(Date parkOutTime) {
this.parkOutTime = parkOutTime;
}
public String getParkingDuration() {
return parkingDuration;
}
public void setParkingDuration(String parkingDuration) {
this.parkingDuration = parkingDuration;
}
public String getParkName() {
return parkName;
}
public void setParkName(String parkName) {
this.parkName = parkName;
}
@Override
public String toString() {
return "OrderVO [orderId=" + orderId + ", parkId=" + parkId + ", parkName=" + parkName + ", parkAddress="
+ parkAddress + ", carNumber=" + carNumber + ", orderPayedFee=" + orderPayedFee + ", orderNotPayFee="
+ orderNotPayFee + ", orderTotalFee=" + orderTotalFee + ", orderTitle=" + orderTitle + ", parkInTime="
+ parkInTime + ", parkOutTime=" + parkOutTime + ", parkingDuration=" + parkingDuration + "]";
}
}