TemplateController.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using Lottomat.Application.Code;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Mvc;
  7. namespace Lottomat.Application.Admin.Areas.GeneratorManage.Controllers
  8. {
  9. /// <summary>
  10. /// 版 本 1.0
  11. /// Copyright (c) 2016-2017
  12. /// 创建人:赵轶
  13. /// 日 期:2016.1.11 14:29
  14. /// 描 述:模板管理
  15. /// </summary>
  16. public class TemplateController : MvcControllerBase
  17. {
  18. /// <summary>
  19. /// 模板列表
  20. /// </summary>
  21. /// <returns></returns>
  22. [HttpGet]
  23. [HandlerAuthorize(PermissionMode.Enforce)]
  24. public ActionResult Index()
  25. {
  26. return View();
  27. }
  28. /// <summary>
  29. /// 单表生成器
  30. /// </summary>
  31. /// <returns></returns>
  32. [HttpGet]
  33. public ActionResult SingleTable()
  34. {
  35. return View();
  36. }
  37. /// <summary>
  38. /// 多表生成器
  39. /// </summary>
  40. /// <returns></returns>
  41. [HttpGet]
  42. public ActionResult MultiTable()
  43. {
  44. return View();
  45. }
  46. }
  47. }