package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Stationtraffic implements Serializable{
|
private int num;
|
private int dev_id;
|
private Date record_time;
|
private Date record_time1;
|
private int dayflow;
|
private int nowflow;
|
private String note;
|
|
private String stationName;
|
private String stationName1;
|
private String stationName2;
|
private String stationName3;
|
private String stationName5;
|
|
private Page page;
|
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public int getDev_id() {
|
return dev_id;
|
}
|
public void setDev_id(int dev_id) {
|
this.dev_id = dev_id;
|
}
|
public Date getRecord_time() {
|
return record_time;
|
}
|
public void setRecord_time(Date record_time) {
|
this.record_time = record_time;
|
}
|
|
public Date getRecord_time1() {
|
return record_time1;
|
}
|
public void setRecord_time1(Date record_time1) {
|
this.record_time1 = record_time1;
|
}
|
public int getDayflow() {
|
return dayflow;
|
}
|
public void setDayflow(int dayflow) {
|
this.dayflow = dayflow;
|
}
|
public int getNowflow() {
|
return nowflow;
|
}
|
public void setNowflow(int nowflow) {
|
this.nowflow = nowflow;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
public String getStationName() {
|
return stationName;
|
}
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
public String getStationName1() {
|
return stationName1;
|
}
|
public void setStationName1(String stationName1) {
|
this.stationName1 = stationName1;
|
}
|
public String getStationName2() {
|
return stationName2;
|
}
|
public void setStationName2(String stationName2) {
|
this.stationName2 = stationName2;
|
}
|
public String getStationName3() {
|
return stationName3;
|
}
|
public void setStationName3(String stationName3) {
|
this.stationName3 = stationName3;
|
}
|
public String getStationName5() {
|
return stationName5;
|
}
|
public void setStationName5(String stationName5) {
|
this.stationName5 = stationName5;
|
}
|
public Page getPage() {
|
return page;
|
}
|
public void setPage(Page page) {
|
this.page = page;
|
}
|
@Override
|
public String toString() {
|
return "Stationtraffic [num=" + num + ", dev_id=" + dev_id
|
+ ", record_time=" + record_time + ", record_time1="
|
+ record_time1 + ", dayflow=" + dayflow + ", nowflow="
|
+ nowflow + ", note=" + note + ", stationName=" + stationName
|
+ ", stationName1=" + stationName1 + ", stationName2="
|
+ stationName2 + ", stationName3=" + stationName3
|
+ ", stationName5=" + stationName5 + ", page=" + page + "]";
|
}
|
|
|
|
|
|
}
|