using Learun.Application.Base.SystemModule; using Learun.Util; using System.Web.Mvc; namespace Learun.Application.Web.Areas.LR_SystemModule.Controllers { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.01 /// 描 述:接口管理 /// public class InterfaceController : MvcControllerBase { private InterfaceIBLL interfaceIBLL = new InterfaceBLL(); #region 视图功能 /// /// 管理页面 /// /// [HttpGet] public ActionResult Index() { return View(); } /// /// 表单页面 /// /// [HttpGet] public ActionResult Form() { return View(); } /// /// 字段维护 /// /// [HttpGet] public ActionResult FieldForm() { return View(); } #endregion #region 获取数据 /// /// 获取列表数据 /// /// [HttpGet] [AjaxOnly] public ActionResult GetList() { var data = interfaceIBLL.GetList(); return this.JsonResult(data); } /// /// 获取树形数据 /// /// [HttpGet] [AjaxOnly] public ActionResult GetTree() { var data = interfaceIBLL.GetTree(); return this.JsonResult(data); } /// /// 获取分页数据 /// /// 分页参数 /// 关键字 /// [HttpGet] [AjaxOnly] public ActionResult GetPageList(string pagination, string keyword) { Pagination paginationobj = pagination.ToObject(); var data = interfaceIBLL.GetPageList(paginationobj, keyword); var jsonData = new { rows = data, total = paginationobj.total, page = paginationobj.page, records = paginationobj.records, }; return JsonResult(jsonData); } /// /// 获取实体数据 /// /// 主键 /// [HttpGet] [AjaxOnly] public ActionResult GetEntity(string keyValue) { var data = interfaceIBLL.GetEntity(keyValue); return JsonResult(data); } #endregion #region 提交数据 /// /// 保存表单数据 /// /// 主键 /// 实体 /// [HttpPost] [ValidateAntiForgeryToken] [AjaxOnly] public ActionResult SaveForm(string keyValue, InterfaceEntity entity) { interfaceIBLL.SaveEntity(keyValue, entity); return Success("保存成功!"); } /// /// 删除表单数据 /// /// 主键 /// [HttpPost] [AjaxOnly] public ActionResult DeleteForm(string keyValue) { interfaceIBLL.DeleteEntity(keyValue); return Success("删除成功!"); } #endregion } }