admin
2023-04-20 007055d472637dec702b60f025480e266e1a746d
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;
    }
 
}