admin
2022-05-07 15bedcc619b1edb6eb987f9288db7670e5b38c46
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
package com.yeshi.makemoney.app.entity.msg;
 
/**
 * @author hxh
 * @title: UserMsgType
 * @description: 用户消息类型
 * @date 2022/4/7 15:19
 */
public enum UserMsgType {
 
    goldcornexchange("金币折算","http://img.mm.yeshitv.com/imgs/msg/icon_msg_goldcorn_exchange.png"), extract("余额提现","http://img.mm.yeshitv.com/imgs/msg/icon_msg_extract.png"), system("系统消息","http://img.mm.yeshitv.com/imgs/msg/icon_msg_system.png");
 
    private String name;
    private String icon;
 
    private UserMsgType(String name, String icon) {
        this.name = name;
        this.icon = icon;
    }
 
    public String getName() {
        return name;
    }
 
    public String getIcon() {
        return icon;
    }
}