admin
2022-04-07 e1cc0d03fadc2d251d36c0dc3650f75e830d5363
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.makemoney.app.entity.msg;
 
/**
 * @author hxh
 * @title: UserMsgType
 * @description: TODO
 * @date 2022/4/7 15:19
 */
public enum UserMsgType {
 
    goldcornexchange("金币折算"), extract("余额提现"), system("系统消息");
 
    private String name;
 
    private UserMsgType(String name) {
        this.name = name;
    }
 
    public String getName() {
        return name;
    }
}