whyclj
2019-06-24 66db8d445a53a8ed8410f7196f5c65de7a29bce7
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
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 + "]";
    }
}