public ActionResult Edit(sysConfigType obj) { bool isOk = Update<sysConfigType>(obj); return Json(new { IsSuccess = isOk }); }
public JsonResult Create(sysConfigType obj) { bool isOk = Save(obj); return Json(new { IsSuccess = isOk }); }