admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yeshi.makemoney.app.entity.goldcorn;
 
/**
 * @author hxh
 * @title: GoldCornGetType
 * @description: 获取金币的类型
 * @date 2022/3/31 18:29
 */
public enum GoldCornGetType {
    signIn("签到"), watchVideo("观看视频"), readNovel("读小说"), scanNews("浏览资讯"), invite("邀请好友"),extract("提现");
    private String name;
 
    private GoldCornGetType(String name) {
        this.name = name;
    }
 
    public String getName() {
        return name;
    }
 
}