111,120
社区成员
发帖
与我相关
我的任务
分享 public ActionResult UpdateComment(CommentModel C)
{
return Content(new BLL.Comment().UpdateComment(C));
} public class CommentModel:PageModel
{
public int CommentID { get; set; }
public int ItemID { get; set; }
public int ItemType { get; set; }
public int UserID { get; set; }
public string Contents { get; set; }
public string CreateDate { get; set; }
}