package com.txsc.supplier.bean; import com.google.gson.JsonObject; /** * 返回数据model * * @author linshao * * @data 2015年3月16日 下午6:20:09 * */ public class NetResultObjBean { private StatusBean status; private JsonObject total; private JsonObject backinfo; public StatusBean getStatus() { return status; } public void setStatus(StatusBean status) { this.status = status; } public JsonObject getTotal() { return total; } public void setTotal(JsonObject total) { this.total = total; } public JsonObject getBackinfo() { return backinfo; } public void setBackinfo(JsonObject backinfo) { this.backinfo = backinfo; } /* * 状态值model */ public class StatusBean { private int code; private String name; private String message; private String request_time; public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getRequest_time() { return request_time; } public void setRequest_time(String request_time) { this.request_time = request_time; } } }