This commit is contained in:
ls
2025-02-22 13:35:34 +08:00
parent 9294cdbc3f
commit 5571e3b1e5

View File

@@ -44,8 +44,6 @@ public class Result<T> implements Serializable {
@Schema(description = "返回数据对象") @Schema(description = "返回数据对象")
private T result; private T result;
private Object xhyCount;
private Object lhsCount;
/** /**
* 不返回数据 * 不返回数据
* *
@@ -53,7 +51,7 @@ public class Result<T> implements Serializable {
* 时间戳 * 时间戳
*/ */
@Schema(description = "时间戳") @Schema(description = "时间戳")
private long timestamp = System.currentTimeMillis(); private long timestamp = System.currentTimeMillis();
public Result() { public Result() {
} }
@@ -133,7 +131,6 @@ public class Result<T> implements Serializable {
return r; return r;
} }
public static <T> Result<T> OK(String msg, T data) { public static <T> Result<T> OK(String msg, T data) {
Result<T> r = new Result<T>(); Result<T> r = new Result<T>();
r.setSuccess(true); r.setSuccess(true);