12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.example.onlinejudge.common;
- public class ResultUtils {
-
- public static <T> BaseResponse<T> success(T data) {
- return new BaseResponse<>(0, data, "ok");
- }
-
- public static BaseResponse error(ErrorCode errorCode) {
- return new BaseResponse<>(errorCode);
- }
-
- public static BaseResponse error(int code, String message) {
- return new BaseResponse(code, null, message);
- }
-
- public static BaseResponse error(ErrorCode errorCode, String message) {
- return new BaseResponse(errorCode.getCode(), null, message);
- }
- }
|