admin
2020-07-04 9d35ba657fa5e3add766405d76e3ff8c4dcd4ad4
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
package com.yeshi.fanli.entity;
 
/**
 * 系统枚举
 */
public enum SystemEnum {
 
    blks("com.yeshi.ec.rebate", "com.xyj.ec.fanli-ios", new String[]{}, 1, "板栗快省"),
    flq("com.yeshi.ec.flq", "com.xyj.ec.flq-ios", new String[]{}, 2, "返利券");
    private String packageName;
    private String bundleId;
    private int systemId;
    private String name;
    private String[] wxxcxAppIds;
 
 
    private SystemEnum(String packageName, String bundleId, String[] wxxcxAppIds, int systemId, String name) {
        this.bundleId = bundleId;
        this.name = name;
        this.packageName = packageName;
        this.systemId = systemId;
        this.wxxcxAppIds=wxxcxAppIds;
    }
 
 
    public String getPackageName() {
        return packageName;
    }
 
    public String getBundleId() {
        return bundleId;
    }
 
    public int getSystemId() {
        return systemId;
    }
 
    public String getName() {
        return name;
    }
 
    public String[] getWxxcxAppIds() {
        return wxxcxAppIds;
    }
}