lxw
2020-06-27 8aee9dfec05e1a9333abf03f1bd35dd7cfa9d352
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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class Dev_state implements Serializable{
    private int num;
    private int dev_id;
    private Date record_time;
    private int dev_state;
    private int dev_alarm;
    private int comm_count;
    private int comm_errcount;
    private String note;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public Date getRecord_time() {
        return record_time;
    }
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
    public int getDev_state() {
        return dev_state;
    }
    public void setDev_state(int dev_state) {
        this.dev_state = dev_state;
    }
    public int getDev_alarm() {
        return dev_alarm;
    }
    public void setDev_alarm(int dev_alarm) {
        this.dev_alarm = dev_alarm;
    }
    public int getComm_count() {
        return comm_count;
    }
    public void setComm_count(int comm_count) {
        this.comm_count = comm_count;
    }
    public int getComm_errcount() {
        return comm_errcount;
    }
    public void setComm_errcount(int comm_errcount) {
        this.comm_errcount = comm_errcount;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Dev_state [num=" + num + ", dev_id=" + dev_id
                + ", record_time=" + record_time + ", dev_state=" + dev_state
                + ", dev_alarm=" + dev_alarm + ", comm_count=" + comm_count
                + ", comm_errcount=" + comm_errcount + ", note=" + note + "]";
    }
    
 
}