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
package com.yeshi.buwan.domain;
 
public class DeviceInfo {
    private String id;
    private String devicename;
    private String imei;
    private String createtime;
 
    public DeviceInfo() {
    }
 
    public DeviceInfo(String id) {
        this.id = id;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getDevicename() {
        return devicename;
    }
 
    public void setDevicename(String devicename) {
        this.devicename = devicename;
    }
 
    public String getImei() {
        return imei;
    }
 
    public void setImei(String imei) {
        this.imei = imei;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
}