@Override
 protected void onPostExecute(String bizType, Object result) {
   if (bizType.equalsIgnoreCase(GetCardList.BIZ_TAG)) {
     JSONObject response = JsonConvert.convertString2Json((String) result);
     if (!CommonRespHandler.processSpecStatu(getRootController(), response)) {
       return;
     }
     if (CommonRespHandler.filterBizResponse(getRootController(), response)) {
       application.setBankListRefresh(false);
       processGetListCardResponse(response);
     }
   }
   super.onPostExecute(bizType, result);
 }