package com.dev.btse.data;
|
|
public class TmpSensor_inf {
|
|
private int sensor_dev_id;
|
private String province;
|
private String city;
|
private String county;
|
private String device_name;
|
|
public int getSensor_dev_id() {
|
return sensor_dev_id;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public String getCounty() {
|
return county;
|
}
|
|
public String getDevice_name() {
|
return device_name;
|
}
|
|
public void setSensor_dev_id(int sensor_dev_id) {
|
this.sensor_dev_id = sensor_dev_id;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public void setCounty(String county) {
|
this.county = county;
|
}
|
|
public void setDevice_name(String device_name) {
|
this.device_name = device_name;
|
}
|
|
@Override
|
public String toString() {
|
return "TmpSensor_inf [sensor_dev_id=" + sensor_dev_id + ", province=" + province + ", city=" + city
|
+ ", county=" + county + ", device_name=" + device_name + "]";
|
}
|
}
|