buhuazhen
6 小时以前 a076e6f08380a14a4ef931ff5a4288399cb75ebc
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.ruoyi.common.enums;
 
import lombok.Getter;
 
/**
 * @author buhuazhen
 * @date 2026/3/19
 * @email 3038525872@qq.com
 */
@Getter
public enum AuditEnum implements BaseEnum<Integer> {
 
    NO_AUDIT(0, "未审核"),
    AUDIT_SUCCESS(1, "审核通过"),
    AUDIT_FAIL(2, "审核失败");
 
 
    private final Integer code;
    private final String value;
 
    AuditEnum(Integer code, String value) {
        this.code = code;
        this.value = value;
    }
}