package com.yeshi.location.app.entity;
|
|
/**
|
* @author hxh
|
* @title: SystemEnum
|
* @description: TODO
|
* @date 2021/11/15 11:17
|
*/
|
public enum SystemEnum {
|
location("定位追踪轨迹", "com.dw.zzql", "");
|
private String name;
|
private String packageName;
|
private String bundleId;
|
|
|
private SystemEnum(String name, String packageName, String bundleId) {
|
this.name = name;
|
this.packageName = packageName;
|
this.bundleId = bundleId;
|
}
|
|
|
public String getName() {
|
return name;
|
}
|
|
public String getPackageName() {
|
return packageName;
|
}
|
|
public String getBundleId() {
|
return bundleId;
|
}
|
}
|