81041
2019-06-20 e4efa2387409d35e1fc5e566b84e2065aafa30a6
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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 + "]";
    }
    
     
}