package com.insthub.O2OMobile.Protocol; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import com.external.activeandroid.DataBaseModel; import com.external.activeandroid.annotation.Column; import com.external.activeandroid.annotation.Table; @Table(name = "orderpayResponse") public class orderpayResponse extends DataBaseModel { @Column(name = "succeed") public int succeed; @Column(name = "order_info") public ORDER_INFO order_info; @Column(name = "error_code") public int error_code; @Column(name = "trade_sn") public String trade_sn; @Column(name = "error_desc") public String error_desc; public void fromJson(JSONObject jsonObject) throws JSONException { if(null == jsonObject){ return ; } JSONArray subItemArray; this.succeed = jsonObject.optInt("succeed"); ORDER_INFO order_info = new ORDER_INFO(); order_info.fromJson(jsonObject.optJSONObject("order_info")); this.order_info = order_info; this.error_code = jsonObject.optInt("error_code"); this.trade_sn = jsonObject.optString("trade_sn"); this.error_desc = jsonObject.optString("error_desc"); return ; } public JSONObject toJson() throws JSONException { JSONObject localItemObject = new JSONObject(); JSONArray itemJSONArray = new JSONArray(); localItemObject.put("succeed", succeed); if(null != order_info) { localItemObject.put("order_info", order_info.toJson()); } localItemObject.put("error_code", error_code); localItemObject.put("trade_sn", trade_sn); localItemObject.put("error_desc", error_desc); return localItemObject; } }