コード例 #1
0
 /** 创建提现信息类 */
 public AccountInfo createAccountInfo(JSONObject json) {
   AccountInfo info = new AccountInfo();
   try {
     info.setState(json.getString("stat"));
     info.setNameStr(json.getString("name"));
     info.setMoney(json.getString("amount"));
     info.setNum(json.getString("bankcardno"));
     info.setAllbankname(json.getString("allbankname"));
     info.setAdd(json.getString("areaname"));
     info.setBank(json.getString("bankname"));
     info.setCashdetailId(json.getString("cashdetailid"));
   } catch (JSONException e) {
     e.printStackTrace();
   }
   return info;
 }