admin
2022-04-01 14c0cd0ea9eb372cd5db511c788b2daa3cc7069b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.makemoney.app.entity.vip;
 
public enum VIPPriceType {
    day("包天"), week("包周"), month("包月"), season("包季"), halfYear("半年"), year("包年");
 
    private String name;
 
    private VIPPriceType(String name) {
        this.name = name;
    }
 
    public String getName() {
        return this.name;
    }
 
}