xiangpei
2025-05-09 641b4a3b1572f3a75ce0bd7d645e34252237cf9c
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
package cn.lili.modules.member.entity.enums;
 
/**
 * 发票类型
 *
 * @author Chopper
 * @since 2021-03-29 14:10:16
 */
public enum MemberReceiptEnum {
 
    /**
     * 发票类型
     */
    ELECTRONIC_INVOICE("电子发票"),
    ORDINARY_INVOICE("普通发票");
 
    private String description;
 
    MemberReceiptEnum(String str) {
        this.description = str;
 
    }
 
    public String description() {
        return description;
    }
 
}