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
package mobvista.dmp.datasource.baichuan;
/**
* @package: mobvista.dmp.datasource.baichuan
* @author: wangjf
* @date: 2019-08-27
* @time: 14:23
* @email: jinfeng.wang@mobvista.com
* @phone: 152-1062-7698
*/
public class AsoDevice {
private String deviceId;
private String deviceType;
private String platform;
private String packageName;
private String dt;
public String getDeviceId() {
return deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceType() {
return deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
public String getPlatform() {
return platform;
}
public void setPlatform(String platform) {
this.platform = platform;
}
public String getPackageName() {
return packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
public String getDt() {
return dt;
}
public void setDt(String dt) {
this.dt = dt;
}
}