工业级运维app手机api
xufenglei
2017-11-14 91e5d3d85c737b96b2c4a1994e2b861cc083453c
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
package com.moral.monitor.entity;
 
import java.util.Date;
 
public class MonitorPoint {
    private String id;
 
    private String name;
 
    private Double longitude;
 
    private Double latitude;
 
    private String provincecode;
 
    private String citycode;
 
    private String areacode;
 
    private String address;
 
    private String repairman;
 
    private String regionDescription;
 
    private Date createTime;
 
    private String owner;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name == null ? null : name.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 getProvincecode() {
        return provincecode;
    }
 
    public void setProvincecode(String provincecode) {
        this.provincecode = provincecode == null ? null : provincecode.trim();
    }
 
    public String getCitycode() {
        return citycode;
    }
 
    public void setCitycode(String citycode) {
        this.citycode = citycode == null ? null : citycode.trim();
    }
 
    public String getAreacode() {
        return areacode;
    }
 
    public void setAreacode(String areacode) {
        this.areacode = areacode == null ? null : areacode.trim();
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address == null ? null : address.trim();
    }
 
    public String getRepairman() {
        return repairman;
    }
 
    public void setRepairman(String repairman) {
        this.repairman = repairman == null ? null : repairman.trim();
    }
 
    public String getRegionDescription() {
        return regionDescription;
    }
 
    public void setRegionDescription(String regionDescription) {
        this.regionDescription = regionDescription == null ? null : regionDescription.trim();
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getOwner() {
        return owner;
    }
 
    public void setOwner(String owner) {
        this.owner = owner == null ? null : owner.trim();
    }
}