using LeaRun.Application.Entity.BaseManage;
using LeaRun.Application.Busines.BaseManage;
using LeaRun.Util;
using LeaRun.Util.WebControl;
using System.Web.Mvc;
namespace LeaRun.Application.Web.Areas.BaseManage.Controllers
{
///
/// 版 本 6.1
/// Copyright (c) 2013-2016 上海力软信息技术有限公司
/// 创 建:超级管理员
/// 日 期:2017-03-01 09:20
/// 描 述:学生表
///
public class studentController : MvcControllerBase
{
private studentBLL studentbll = new studentBLL();
#region 视图功能
///
/// 列表页面
///
///
[HttpGet]
public ActionResult studentIndex()
{
return View();
}
///
/// 表单页面
///
///
[HttpGet]
public ActionResult studentForm()
{
return View();
}
#endregion
#region 获取数据
///
/// 获取列表
///
/// 分页参数
/// 查询参数
/// 返回分页列表Json
[HttpGet]
public ActionResult GetPageListJson(Pagination pagination, string queryJson)
{
var watch = CommonHelper.TimerStart();
var data = studentbll.GetPageList(pagination, queryJson);
var jsonData = new
{
rows = data,
total = pagination.total,
page = pagination.page,
records = pagination.records,
costtime = CommonHelper.TimerEnd(watch)
};
return ToJsonResult(jsonData);
}
///
/// 获取列表
///
/// 查询参数
/// 返回列表Json
[HttpGet]
public ActionResult GetListJson(string queryJson)
{
var data = studentbll.GetList(queryJson);
return ToJsonResult(data);
}
///
/// 获取实体
///
/// 主键值
/// 返回对象Json
[HttpGet]
public ActionResult GetFormJson(string keyValue)
{
var data = studentbll.GetEntity(keyValue);
return ToJsonResult(data);
}
#endregion
#region 提交数据
///
/// 删除数据
///
/// 主键值
///
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult RemoveForm(string keyValue)
{
studentbll.RemoveForm(keyValue);
return Success("删除成功。");
}
///
/// 保存表单(新增、修改)
///
/// 主键值
/// 实体对象
///
[HttpPost]
[ValidateAntiForgeryToken]
[AjaxOnly]
public ActionResult SaveForm(string keyValue, studentEntity entity)
{
studentbll.SaveForm(keyValue, entity);
return Success("操作成功。");
}
#endregion
}
}