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.03.09 /// 描 述:数据库创建常用字段 /// public class DbFieldController : MvcControllerBase { private DbFieldIBLL dbFieldIBLL = new DbFieldBLL(); /// /// 列表页面 /// /// public ActionResult Index() { return View(); } /// /// 表单页面 /// /// [HttpGet] public ActionResult Form() { return View(); } /// /// 字段选择页面 /// /// [HttpGet] public ActionResult SelectForm() { return View(); } #region 获取数据 /// /// 获取列表数据 /// /// [HttpGet] [AjaxOnly] public ActionResult GetList(string queryJson) { var data = dbFieldIBLL.GetList(queryJson); return this.JsonResult(data); } /// /// 获取分页数据 /// /// 分页参数 /// 关键字 /// [HttpGet] [AjaxOnly] public ActionResult GetPageList(string pagination, string queryJson) { Pagination paginationobj = pagination.ToObject(); var data = dbFieldIBLL.GetPageList(paginationobj, queryJson); 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 = dbFieldIBLL.GetEntity(keyValue); return JsonResult(data); } #endregion #region 提交数据 /// /// 保存表单数据 /// /// 主键 /// 实体 /// [HttpPost] [ValidateAntiForgeryToken] [AjaxOnly] public ActionResult SaveForm(string keyValue, DbFieldEntity entity) { dbFieldIBLL.SaveEntity(keyValue, entity); return Success("保存成功!"); } /// /// 删除表单数据 /// /// 主键 /// [HttpPost] [AjaxOnly] public ActionResult DeleteForm(string keyValue) { dbFieldIBLL.DeleteEntity(keyValue); return Success("删除成功!"); } #endregion } }