You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
992 B

  1. using System.Web.Mvc;
  2. namespace Learun.Application.Web.Areas.LR_CodeDemo.Controllers
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2018.04.12
  9. /// 描 述:附件管理
  10. /// </summary>
  11. public class GridDemoController : MvcControllerBase
  12. {
  13. /// <summary>
  14. /// 普通表格
  15. /// </summary>
  16. /// <returns></returns>
  17. public ActionResult CommonIndex()
  18. {
  19. return View();
  20. }
  21. /// <summary>
  22. /// 编辑表格
  23. /// </summary>
  24. /// <returns></returns>
  25. public ActionResult EditIndex()
  26. {
  27. return View();
  28. }
  29. /// <summary>
  30. /// 报表表格
  31. /// </summary>
  32. /// <returns></returns>
  33. public ActionResult ReportIndex()
  34. {
  35. return View();
  36. }
  37. }
  38. }