Administrator
2 days ago e4048873355aa30e2f4296d745972158225fddd6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
@Getter
public enum ClothesOrderPayTypeEnum {
 
    WECHAT(1,"微信支付"),
    ALIPAY(2,"支付宝支付"),
    BALANCE(3,"余额支付")
    ;
 
 
    private Integer code;
    private String name;
 
    ClothesOrderPayTypeEnum(Integer code,String name) {
 
        this.code = code;
        this.name = name;
    }
}