ScanStatictic.java
778 Bytes
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
package com.bsth.entity.publish;
public class ScanStatictic {
private String rq;
private String physicalCode;
private String stationName;
private int count;
public String getRq() {
return rq;
}
public void setRq(String rq) {
this.rq = rq;
}
public String getPhysicalCode() {
return physicalCode;
}
public void setPhysicalCode(String physicalCode) {
this.physicalCode = physicalCode;
}
public String getStationName() {
return stationName;
}
public void setStationName(String stationName) {
this.stationName = stationName;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}