using Learun.Application.Excel;
using System.Collections.Generic;
using System.Web.Mvc;
using Learun.Util;
namespace Learun.Application.Web.Areas.LR_SystemModule.Controllers
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2017.04.01
/// 描 述:Excel导出管理
///
public class ExcelExportController : MvcControllerBase
{
private ExcelExportIBLL excelExportIBLL = new ExcelExportBLL();
#region 视图功能
[HttpGet]
public ActionResult Index()
{
return View();
}
[HttpGet]
public ActionResult Form()
{
return View();
}
#endregion
#region 获取数据
///
/// 获取分页数据
///
/// 分页参数
/// 查询参数
///
[HttpGet]
[AjaxOnly]
public ActionResult GetPageList(string pagination, string queryJson)
{
Pagination paginationobj = pagination.ToObject();
var data = excelExportIBLL.GetPageList(paginationobj, queryJson);
var jsonData = new
{
rows = data,
total = paginationobj.total,
page = paginationobj.page,
records = paginationobj.records,
};
return JsonResult(jsonData);
}
///
/// 获取列表数据
///
/// 功能模块主键
///
[HttpGet]
[AjaxOnly]
public ActionResult GetList(string moduleId)
{
var data = excelExportIBLL.GetList(moduleId);
return JsonResult(data);
}
///
/// 获取表单数据
/// 主键
///
///
[HttpGet]
[AjaxOnly]
public ActionResult GetEntity(string keyValue)
{
var data = excelExportIBLL.GetEntity(keyValue);
return JsonResult(data);
}
#endregion
#region 提交数据
///
/// 保存表单数据
///
/// 主键
/// 实体
///
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult SaveForm(string keyValue, ExcelExportEntity entity)
{
excelExportIBLL.SaveEntity(keyValue, entity);
return Success("保存成功!");
}
///
/// 删除表单数据
///
/// 主键
///
[HttpPost]
[AjaxOnly]
public ActionResult DeleteForm(string keyValue)
{
excelExportIBLL.DeleteEntity(keyValue);
return Success("删除成功!");
}
///
/// 更新表单数据
///
/// 主键
/// 实体数据
///
[HttpPost]
[AjaxOnly]
public ActionResult UpdateState(string keyValue, int state)
{
ExcelExportEntity entity = new ExcelExportEntity()
{
F_EnabledMark = state
};
excelExportIBLL.SaveEntity(keyValue, entity);
return Success("操作成功!");
}
#endregion
}
}