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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class Eventdata_inf implements Serializable{
    private int num;
    private int dev_id;
    private int test_record_count;
    private int test_type;
    private Date  record_time;
    private int record_num;
    private Date test_starttime;
    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 int getTest_record_count() {
        return test_record_count;
    }
    public void setTest_record_count(int test_record_count) {
        this.test_record_count = test_record_count;
    }
    public int getTest_type() {
        return test_type;
    }
    public void setTest_type(int test_type) {
        this.test_type = test_type;
    }
    public Date getRecord_time() {
        return record_time;
    }
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
    public int getRecord_num() {
        return record_num;
    }
    public void setRecord_num(int record_num) {
        this.record_num = record_num;
    }
    public Date getTest_starttime() {
        return test_starttime;
    }
    public void setTest_starttime(Date test_starttime) {
        this.test_starttime = test_starttime;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Eventdata_inf [num=" + num + ", dev_id=" + dev_id
                + ", test_record_count=" + test_record_count + ", test_type="
                + test_type + ", record_time=" + record_time + ", record_num="
                + record_num + ", test_starttime=" + test_starttime + ", note="
                + note + "]";
    }
    
 
}