工业级运维app手机api
fengxiang
2017-10-31 465d1f03afa058d9ce210f2fc48e5c06ce291a68
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.moral.monitor.entity;
 
import java.util.Date;
 
/**
 * Created by a on 2017/5/2.
 */
public class Noticelog {
    int id;
    int user_id;
    String user_name;
    String notice_type;
    String equipment_mac;
    String equipment_name;
    String sensor;
    String alarm_content;
    Date time;
    String equipment_address;
    int sensor_level;
    String noticestate;
    String desctime;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public int getUser_id() {
        return user_id;
    }
 
    public String getUser_name() {
        return user_name;
    }
 
    public void setUser_name(String user_name) {
        this.user_name = user_name;
    }
 
    public void setUser_id(int user_id) {
        this.user_id = user_id;
    }
 
    public String getNotice_type() {
        return notice_type;
    }
 
    public void setNotice_type(String notice_type) {
        this.notice_type = notice_type;
    }
 
    public String getEquipment_mac() {
        return equipment_mac;
    }
 
    public void setEquipment_mac(String equipment_mac) {
        this.equipment_mac = equipment_mac;
    }
 
    public String getEquipment_name() {
        return equipment_name;
    }
 
    public void setEquipment_name(String equipment_name) {
        this.equipment_name = equipment_name;
    }
 
    public String getSensor() {
        return sensor;
    }
 
    public void setSensor(String sensor) {
        this.sensor = sensor;
    }
 
    public String getAlarm_content() {
        return alarm_content;
    }
 
    public void setAlarm_content(String alarm_content) {
        this.alarm_content = alarm_content;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public String getEquipment_address() {
        return equipment_address;
    }
 
    public void setEquipment_address(String equipment_address) {
        this.equipment_address = equipment_address;
    }
 
    public int getSensor_level() {
        return sensor_level;
    }
 
    public void setSensor_level(int sensor_level) {
        this.sensor_level = sensor_level;
    }
 
    public String getNoticestate() {
        return noticestate;
    }
 
    public void setNoticestate(String noticestate) {
        this.noticestate = noticestate;
    }
 
    public String getDesctime() {
        return desctime;
    }
 
    public void setDesctime(String desctime) {
        this.desctime = desctime;
    }
}