|
123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Web.Mvc;
-
- namespace Learun.Application.Web.Areas.LR_CodeDemo.Controllers
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创建人:陈彬彬
- /// 日 期:2018.04.12
- /// 描 述:附件管理
- /// </summary>
- public class GridDemoController : MvcControllerBase
- {
- /// <summary>
- /// 普通表格
- /// </summary>
- /// <returns></returns>
- public ActionResult CommonIndex()
- {
- return View();
- }
-
-
- /// <summary>
- /// 编辑表格
- /// </summary>
- /// <returns></returns>
- public ActionResult EditIndex()
- {
- return View();
- }
-
- /// <summary>
- /// 报表表格
- /// </summary>
- /// <returns></returns>
- public ActionResult ReportIndex()
- {
- return View();
- }
- }
- }
|