工业级运维app手机api
沈斌
2017-10-24 78b39c39cf7d68c2c0efc3c2fabb8f57963d030d
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.moral.monitor.entity;
 
import java.util.Date;
 
/**
 * Created by a on 2017/7/18.
 */
public class MonitorPoint {
 
    private int id;
    private String name;
    private String address;
    private String repairman;
    private Date create_time;
    private String owner;
    private int equcount;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getRepairman() {
        return repairman;
    }
 
    public void setRepairman(String repairman) {
        this.repairman = repairman;
    }
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
 
    public String getOwner() {
        return owner;
    }
 
    public void setOwner(String owner) {
        this.owner = owner;
    }
 
    public int getEqucount() {
        return equcount;
    }
 
    public void setEqucount(int equcount) {
        this.equcount = equcount;
    }
}