admin
2021-12-24 b5e19564dcbf1b7ec12946209d74313479f9dfe1
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yeshi.buwan.domain.jump;
 
public enum JumpTypeEnum {
 
    baichuan("百川"), web("网页"),clazz("类"),rewardVideo("激励视频"),wxxcx("微信小程序");
 
    private String name;
 
    private JumpTypeEnum(String name) {
        this.name = name;
    }
 
}