예제 #1
0
 public ActionResult SendMailLogDelete(int id)
 {
     int result = VideoServiceClass.SendMailLog_DeleteById(id);
     if (result > 0)
     {
         return Json(new { success = true, errors = new { text = "删除成功" } });
     }
     else
     {
         return Json(new { success = false, errors = new { text = "删除失败" } });
     }
 }