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.goldcorn;
|
| /**
| * @author hxh
| * @title: GoldCornPriceCountType
| * @description: 计价类型
| * @date 2022/4/28 12:06
| */
| public enum GoldCornPriceCountType {
|
| //时间计数
| time("时间计数"),
| //次数计数
| num("次数计数");
|
| private String name;
|
| public String getName() {
| return name;
| }
|
| private GoldCornPriceCountType(String name) {
| this.name = name;
| }
| }
|
|