This commit is contained in:
张良(004796)
2024-03-25 19:13:06 +08:00
parent 0e46e316bb
commit 8a89c53258
25 changed files with 468 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
package com.ruoyi.xq.enums;
import com.ruoyi.common.exception.IErrorService;
import lombok.Getter;
@Getter
public enum ErrorEnum implements IErrorService {
VIP_AUTH(600100,"权限不足需要开通VIP")
;
private final Integer code;
private final String text;
ErrorEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}