| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using Lottomat.Application.Code;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace Lottomat.Application.Admin.Areas.GeneratorManage.Controllers
- {
- /// <summary>
- /// 版 本 1.0
- /// Copyright (c) 2016-2017
- /// 创建人:赵轶
- /// 日 期:2016.1.11 14:29
- /// 描 述:模板管理
- /// </summary>
- public class TemplateController : MvcControllerBase
- {
- /// <summary>
- /// 模板列表
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- [HandlerAuthorize(PermissionMode.Enforce)]
- public ActionResult Index()
- {
- return View();
- }
- /// <summary>
- /// 单表生成器
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult SingleTable()
- {
- return View();
- }
- /// <summary>
- /// 多表生成器
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult MultiTable()
- {
- return View();
- }
- }
- }
|