public void ResetBoundNum(string user_id, string version, string equType, string equName)
 {
     BLL.pushparam bll_push = new BLL.pushparam();
     string json = string.Empty;
     try
     {
         bll_push.ModifyPushNum(user_id);
         json += "{\"status\":\"true\"}";
     }
     catch (Exception ex)
     {
         json = "{\"status\":\"false\",\"data\":\"" + ex.Message + "\"}";
     }
     WriteWebServiceLog(version, equType, equName, "ResetBoundNum", "");
     Context.Response.Write(json);
     Context.Response.End();
 }