publish 1.0.12-icbc-sandbox

This commit is contained in:
曾文豪
2024-11-09 13:26:52 +08:00
parent 5db42f5bc8
commit 9bc2ae07b8
15 changed files with 27 additions and 30 deletions

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng.springboot-parent</groupId>
<artifactId>springboot-parent</artifactId>
<version>1.0.12</version>
<version>1.0.12-icbc-sandbox</version>
</parent>
<artifactId>springboot-util</artifactId>

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;
}
}