[fix]修改提现逻辑

This commit is contained in:
wangqx 2025-09-25 20:11:45 +08:00
parent 2ec245bc2f
commit ec58264e48

View File

@ -40,7 +40,7 @@ public class R<T> implements Serializable {
return restResult(null, SUCCESS, "操作成功");
}
public static <T> R<T> notLogin() {
return restResult(null, ResultCode.USER_NOT_LOGIN.code(), "操作成功");
return restResult(null, FAIL, "用户未登录");
}
public static <T> R<T> ok(T data) {