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
| package com.yeshi.makemoney.app.entity.money;
|
| /**
| * @author hxh
| * @title: UserMoneyType
| * @description: 资金变动的类型
| * @date 2022/3/31 19:15
| */
| public enum UserMoneyType {
| extract("提现"),
| extractReject("提现被拒绝"),
| goldCorn("金币兑换"),
| shopping("购物");
|
| private String name;
|
| private UserMoneyType(String name) {
| this.name = name;
|
| }
|
| public String getName() {
| return name;
| }
| }
|
|