fix: 暂存

This commit is contained in:
2026-06-24 08:30:22 +08:00
parent c5e9a149f4
commit 842e5c29f9
11 changed files with 170 additions and 363 deletions

View File

@@ -11,7 +11,7 @@ public record ApiResponse<T>(int code, String message, T data) {
* 成功响应
*/
public static <T> ApiResponse<T> ok(T data) {
return new ApiResponse<>(0, "success", data);
return new ApiResponse<>(0, "成功", data);
}
/**