publish icbc-sandbox-1.0.0
Some checks failed
/ local-deploy (push) Failing after 32s

This commit is contained in:
曾文豪
2024-11-09 13:52:30 +08:00
parent c2fe494ed9
commit 4d4165aba8
15 changed files with 56 additions and 31 deletions

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng.springboot-parent</groupId>
<artifactId>springboot-parent</artifactId>
<version>1.0.24</version>
<version>icbc-sandbox-1.0.0</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;
}
}