PWExcel.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
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
package com.bsth.entity.report;
public class PWExcel {
private String xl;//线路名
private int pj1;
private int pj2;
private int pj3;
private int pj4;
private int pj5;
private int pj6;
private int pj7;
private int pj8;
private int pj9;
private int pj10;
private int pj11;
private int pj12;
private int pj13;
private int cls;//车辆数
private int dtrc;//当天人次
private int ljrc;//累计人次
private double dtje;//当天金额
private double ljje;//累计金额
public static String[] columns = new String[]{"xl","pj1","pj2","pj3","pj4","pj5","pj6","pj7","pj8","pj9","pj10","pj11","pj12","pj13","cls","dtrc","ljrc","dtje","ljje"};
public String getXl() {
return xl;
}
public void setXl(String xl) {
this.xl = xl;
}
public int getPj1() {
return pj1;
}
public void setPj1(int pj1) {
this.pj1 = pj1;
}
public int getPj2() {
return pj2;
}
public void setPj2(int pj2) {
this.pj2 = pj2;
}
public int getPj3() {
return pj3;
}
public void setPj3(int pj3) {
this.pj3 = pj3;
}
public int getPj4() {
return pj4;
}
public void setPj4(int pj4) {
this.pj4 = pj4;
}
public int getPj5() {
return pj5;
}
public void setPj5(int pj5) {
this.pj5 = pj5;
}
public int getPj6() {
return pj6;
}
public void setPj6(int pj6) {
this.pj6 = pj6;
}
public int getPj7() {
return pj7;
}
public void setPj7(int pj7) {
this.pj7 = pj7;
}
public int getPj8() {
return pj8;
}
public void setPj8(int pj8) {
this.pj8 = pj8;
}
public int getPj9() {
return pj9;
}
public void setPj9(int pj9) {
this.pj9 = pj9;
}
public int getPj10() {
return pj10;
}
public void setPj10(int pj10) {
this.pj10 = pj10;
}
public int getPj11() {
return pj11;
}
public void setPj11(int pj11) {
this.pj11 = pj11;
}
public int getPj12() {
return pj12;
}
public void setPj12(int pj12) {
this.pj12 = pj12;
}
public int getPj13() {
return pj13;
}
public void setPj13(int pj13) {
this.pj13 = pj13;
}
public int getCls() {
return cls;
}
public void setCls(int cls) {
this.cls = cls;
}
public int getDtrc() {
return dtrc;
}
public void setDtrc(int dtrc) {
this.dtrc = dtrc;
}
public int getLjrc() {
return ljrc;
}
public void setLjrc(int ljrc) {
this.ljrc = ljrc;
}
public double getDtje() {
return dtje;
}
public void setDtje(double dtje) {
this.dtje = dtje;
}
public double getLjje() {
return ljje;
}
public void setLjje(double ljje) {
this.ljje = ljje;
}
}