package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Sensor_inf implements Serializable{
|
private int num;
|
private String province;
|
private String city;
|
private String county;
|
private int sensor_dev_id;
|
private String device_name;
|
private String VideoOrImage;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public String getProvince() {
|
return province;
|
}
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
public String getCity() {
|
return city;
|
}
|
public void setCity(String city) {
|
this.city = city;
|
}
|
public String getCounty() {
|
return county;
|
}
|
public void setCounty(String county) {
|
this.county = county;
|
}
|
public int getSensor_dev_id() {
|
return sensor_dev_id;
|
}
|
public void setSensor_dev_id(int sensor_dev_id) {
|
this.sensor_dev_id = sensor_dev_id;
|
}
|
public String getDevice_name() {
|
return device_name;
|
}
|
public void setDevice_name(String device_name) {
|
this.device_name = device_name;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
public String getVideoOrImage() {
|
return VideoOrImage;
|
}
|
public void setVideoOrImage(String videoOrImage) {
|
VideoOrImage = videoOrImage;
|
}
|
@Override
|
public String toString() {
|
return "Sensor_inf [num=" + num + ", province=" + province + ", city="
|
+ city + ", county=" + county + ", sensor_dev_id="
|
+ sensor_dev_id + ", device_name=" + device_name
|
+ ", VideoOrImage=" + VideoOrImage + ", note=" + note + "]";
|
}
|
|
|
}
|