publish icbc-sandbox-1.0.0
All checks were successful
/ local-deploy (push) Successful in 18s

This commit is contained in:
曾文豪
2024-11-09 13:57:38 +08:00
parent 3aca586bd4
commit 0ccb88e02e
5 changed files with 35 additions and 10 deletions

View File

@@ -17,7 +17,6 @@ public class ApiResp<T> {
private int code;
private String message;
private Throwable exception;
private T data;
private long recordsTotal = 0;
private boolean encrypt = false;
@@ -182,11 +181,4 @@ public class ApiResp<T> {
this.encrypt = encrypt;
}
public Throwable getException() {
return exception;
}
public void setException(Throwable exception) {
this.exception = exception;
}
}