yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
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
package com.yeshi.fanli.entity;
 
//设备信息
public class DeviceInfo {
    private String device;
    private String platform;
    private String deviceType;
    private String osVersion;
    private String network;
 
    public String getNetwork() {
        return network;
    }
 
    public void setNetwork(String network) {
        this.network = network;
    }
 
    public String getDevice() {
        return device;
    }
 
    public void setDevice(String device) {
        this.device = device;
    }
 
    public String getPlatform() {
        return platform;
    }
 
    public void setPlatform(String platform) {
        this.platform = platform;
    }
 
    public String getDeviceType() {
        return deviceType;
    }
 
    public void setDeviceType(String deviceType) {
        this.deviceType = deviceType;
    }
 
    public String getOsVersion() {
        return osVersion;
    }
 
    public void setOsVersion(String osVersion) {
        this.osVersion = osVersion;
    }
}