luodangjia
2024-11-28 06f455915bb9d11caa8829942f9007809ee9ae3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.other.enums;
 
import lombok.Getter;
 
@Getter
public enum ShareAuditStatus {
    WAIT(0, "待审核"),
    SUCCESS(1, "审核通过"),
    FAIL(2, "审核失败");
 
    private final Integer code;
    private final String message;
 
    ShareAuditStatus(Integer code, String message) {
        this.code = code;
        this.message = message;
    }
 
}