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.

TemplateAPPController.cs 661 B

4 years ago
12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace Learun.Application.Web.Areas.LR_CodeGeneratorModule.Controllers
  7. {
  8. /// <summary>
  9. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  10. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  11. /// 创建人:陈彬彬
  12. /// 日 期:2017.03.09
  13. /// 描 述:移动端代码生成器
  14. /// </summary>
  15. public class TemplateAPPController : MvcControllerBase
  16. {
  17. #region 视图功能
  18. public ActionResult Index()
  19. {
  20. return View();
  21. }
  22. #endregion
  23. }
  24. }