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
29
30
31
| package com.ks.tool.bkz.entity.user;
|
| import java.math.BigDecimal;
|
| public enum CardPwdTypeEnum {
| sdljShort(10, "首单优惠共享版试用", new BigDecimal(0)),
| sdljMonth(11, "首单优惠共享版月卡", new BigDecimal(99)),
| sdljSeason(12, "首单优惠共享版季卡", new BigDecimal(149)),
| sdljYear(13, "首单优惠共享版年卡", new BigDecimal(499));
| private int type;
| private String name;
|
| private BigDecimal price;
| private CardPwdTypeEnum(int type, String name, BigDecimal price) {
| this.type = type;
| this.name = name;
| this.price = price;
| }
|
| public int getType() {
| return type;
| }
|
| public String getName() {
| return name;
| }
|
| public BigDecimal getPrice() {
| return price;
| }
| }
|
|