first commit
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.xinwei.utils;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ResponseJson {
|
||||
|
||||
public String msg;
|
||||
public String url;
|
||||
public String returnStr;
|
||||
public boolean success=true;
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getReturnStr() {
|
||||
return returnStr;
|
||||
}
|
||||
|
||||
public void setReturnStr(String returnStr) {
|
||||
this.returnStr = returnStr;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user