工业级运维app手机api
沈斌
2017-10-27 187676ab75aebabf0e5813b2686d8537f4f6c750
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package com.moral.monitor.entity;
 
import java.util.Date;
 
public class Equipment {
    private Integer id;
 
    private String name;
 
    private String address;
 
    private Double longitude;
 
    private Double latitude;
 
    private String mac;
 
    private Integer state;
 
    private Date time;
 
    private String installer;
 
    private String repairman;
 
    private String province;
 
    private String city;
 
    private String area;
 
    private String monitorpoint;
 
    private String ownerId;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address == null ? null : address.trim();
    }
 
    public Double getLongitude() {
        return longitude;
    }
 
    public void setLongitude(Double longitude) {
        this.longitude = longitude;
    }
 
    public Double getLatitude() {
        return latitude;
    }
 
    public void setLatitude(Double latitude) {
        this.latitude = latitude;
    }
 
    public String getMac() {
        return mac;
    }
 
    public void setMac(String mac) {
        this.mac = mac == null ? null : mac.trim();
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public String getInstaller() {
        return installer;
    }
 
    public void setInstaller(String installer) {
        this.installer = installer == null ? null : installer.trim();
    }
 
    public String getRepairman() {
        return repairman;
    }
 
    public void setRepairman(String repairman) {
        this.repairman = repairman == null ? null : repairman.trim();
    }
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province == null ? null : province.trim();
    }
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city == null ? null : city.trim();
    }
 
    public String getArea() {
        return area;
    }
 
    public void setArea(String area) {
        this.area = area == null ? null : area.trim();
    }
 
    public String getMonitorpoint() {
        return monitorpoint;
    }
 
    public void setMonitorpoint(String monitorpoint) {
        this.monitorpoint = monitorpoint == null ? null : monitorpoint.trim();
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId == null ? null : ownerId.trim();
    }
}