This commit is contained in:
z 2025-04-24 19:42:16 +08:00
parent 805716cf5f
commit ddbae190e5

View File

@ -9,5 +9,7 @@ public enum RestCode {
SUCCESS(0, "拉取成功"), ERROR(1, "拉取失败"), UNAUTHORIZED(401, "需要登陆");
private final int code;
private final String msg;
}