lxw
2020-06-18 a6a37debb7b037cbb4ef9a3bb38b48bebd8a9a5e
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
72
73
74
75
76
77
78
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Device_inf implements Serializable{
    private int num;
    private String dev_name;
    private int dev_id;
    private int sys_type;
    private String sys_name;
    private int analog_count;
    private int switch_count;
    private int state_count;
    private String note;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public String getDev_name() {
        return dev_name;
    }
    public void setDev_name(String dev_name) {
        this.dev_name = dev_name;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public int getSys_type() {
        return sys_type;
    }
    public void setSys_type(int sys_type) {
        this.sys_type = sys_type;
    }
    public String getSys_name() {
        return sys_name;
    }
    public void setSys_name(String sys_name) {
        this.sys_name = sys_name;
    }
    public int getAnalog_count() {
        return analog_count;
    }
    public void setAnalog_count(int analog_count) {
        this.analog_count = analog_count;
    }
    public int getSwitch_count() {
        return switch_count;
    }
    public void setSwitch_count(int switch_count) {
        this.switch_count = switch_count;
    }
    public int getState_count() {
        return state_count;
    }
    public void setState_count(int state_count) {
        this.state_count = state_count;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Devdata_rt [num=" + num + ", dev_name=" + dev_name
                + ", dev_id=" + dev_id + ", sys_type=" + sys_type
                + ", sys_name=" + sys_name + ", analog_count=" + analog_count
                + ", switch_count=" + switch_count + ", state_count="
                + state_count + ", note=" + note + "]";
    }
    
}