RequestBean

来源:互联网 发布:工程量表格计算软件 编辑:程序博客网 时间:2024/05/16 11:30
public class RequestBean {    //请求网络接口需要用到的参数;    public String url="";    public String value="";    public String method="GET";//GET请求    public RequestBean(String url) {        this.url = url;    }//post请求    public RequestBean(String url, String value, String method) {        this.url = url;        this.value = value;        this.method = method;    }}
原创粉丝点击