1.
phpcjl
2024-11-22 c7d752e4c2dab7aa8e3873a331861cf0ee25976a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.other.enums;
 
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;
    }
 
    public Integer getCode() {
        return code;
    }
 
    public String getMessage() {
        return message;
    }
}