Exemple #1
0
 public ActionResult AddCommunity(CommunityDTO community)
 {
     CommunityService.AddCommunity(community);
     return(Json(new AjaxResult <object>
     {
         code = 0,
         msg = "添加成功"
     }));
 }