puzhibing
2024-12-05 454ee66716ec76821e78ab1f056f39fca6f29a71
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/enums/ShareAuditStatus.java
New file
@@ -0,0 +1,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;
    }
}