您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PluginDemoController.cs 694 B

4 年前
123456789101112131415161718192021222324252627
  1. using System.Web.Mvc;
  2. namespace Learun.Application.Web.Areas.LR_CodeGeneratorModule.Controllers
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2017.03.09
  9. /// 描 述:JS插件Demo
  10. /// </summary>
  11. public class PluginDemoController : MvcControllerBase
  12. {
  13. #region 视图功能
  14. /// <summary>
  15. /// JS插件展示
  16. /// </summary>
  17. /// <returns></returns>
  18. [HttpGet]
  19. public ActionResult Index()
  20. {
  21. return View();
  22. }
  23. #endregion
  24. }
  25. }