新路交接口替换
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.dahe.mylibrary.callback;
|
||||
|
||||
/**
|
||||
* @ClassName OnGDDownloadResultListener
|
||||
* @Author john
|
||||
* @Date 2024/11/25 18:22
|
||||
* @Description TODO
|
||||
*/
|
||||
public interface OnGDDownloadResultListener {
|
||||
void onSuccess(String var1);
|
||||
|
||||
void onFailure(String var1, String var2);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.dahe.mylibrary.callback;
|
||||
|
||||
/**
|
||||
* @ClassName OnGDResultListener
|
||||
* @Author john
|
||||
* @Date 2024/11/25 17:48
|
||||
* @Description TODO
|
||||
*/
|
||||
public interface OnGDResultListener {
|
||||
|
||||
void onSuccess();
|
||||
|
||||
void onFailure(String var1, String var2);
|
||||
}
|
||||
@@ -11,12 +11,30 @@ public class CommonResponseBean<T> implements Serializable {
|
||||
private int code;
|
||||
private String info;
|
||||
private String msg;
|
||||
private String message;
|
||||
private String url;
|
||||
private String fileName;
|
||||
private String token;
|
||||
private String expiryIn;
|
||||
private String statusCode;
|
||||
private boolean success;
|
||||
|
||||
public String getStatusCode() {
|
||||
return statusCode;
|
||||
}
|
||||
|
||||
public void setStatusCode(String statusCode) {
|
||||
this.statusCode = statusCode;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user