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
package mobvista.dmp.datasource.bundle.service;
/**
* @package: mobvista.dmp.datasource.bundle.service
* @author: wangjf
* @date: 2020/11/3
* @time: 2:38 下午
* @email: jinfeng.wang@mobvista.com
* @phone: 152-1062-7698
*/
public class BundleClass {
private String bundleId;
private String packageName;
public BundleClass() {
}
public BundleClass(String bundleId, String packageName) {
this.bundleId = bundleId;
this.packageName = packageName;
}
public String getBundleId() {
return bundleId;
}
public void setBundleId(String bundleId) {
this.bundleId = bundleId;
}
public String getPackageName() {
return packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
}