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
73
74
75
76
77
78
79
80
81
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class Devdata_rt implements Serializable{
    private int num;
    private int dev_id;
    private Date record_time;
    private Date record_time1;
    private int am_num;
    private float analog_value;
    private float switch_value;
    private float state_value;
    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 Date getRecord_time1() {
        return record_time1;
    }
    public void setRecord_time1(Date record_time1) {
        this.record_time1 = record_time1;
    }
    public int getAm_num() {
        return am_num;
    }
    public void setAm_num(int am_num) {
        this.am_num = am_num;
    }
    public float getAnalog_value() {
        return analog_value;
    }
    public void setAnalog_value(float analog_value) {
        this.analog_value = analog_value;
    }
    public float getSwitch_value() {
        return switch_value;
    }
    public void setSwitch_value(float switch_value) {
        this.switch_value = switch_value;
    }
    public float getState_value() {
        return state_value;
    }
    public void setState_value(float state_value) {
        this.state_value = state_value;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Devdata_rt [num=" + num + ", dev_id=" + dev_id
                + ", record_time=" + record_time + ", am_num=" + am_num
                + ", analog_value=" + analog_value + ", switch_value="
                + switch_value + ", state_value=" + state_value + ", note="
                + note + "]";
    }
    
    
}