public ActionResult RemoveForm(string keyValue)
 {
     if (keyValue == "System")
     {
         throw new Exception("当前账户不能删除");
     }
     userBLL.RemoveForm(keyValue);
     return(Success("删除成功。"));
 }