新路交接口替换

This commit is contained in:
2024-11-26 11:01:13 +08:00
parent f5e24e2273
commit d8f80ad07d
6 changed files with 12 additions and 10 deletions
@@ -8,7 +8,7 @@ import java.io.Serializable;
public class CommonResponseBean<T> implements Serializable {
private T data;
private int code;
private String code;
private String info;
private String msg;
private String message;
@@ -59,11 +59,11 @@ public class CommonResponseBean<T> implements Serializable {
this.data = data;
}
public int getCode() {
public String getCode() {
return code;
}
public void setCode(int code) {
public void setCode(String code) {
this.code = code;
}