/// <summary> /// 数据还原 /// </summary> /// <returns></returns> public ActionResult RestoreDataBase() { try { SystemBLL.RestoreDataBase(); return(Content("yes")); } catch (Exception ex) { return(Content(ex.Message)); } }