示例#1
0
 public ActionResult AddComment(AddCommentModel model)
 {
     _documentService.AddComment(model.Id, model.Value);
     return(Json(new { ok = true }));
 }