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 { /// /// 版 本 1.0 /// Copyright (c) 2016-2017 /// 创建人:赵轶 /// 日 期:2016.1.11 14:29 /// 描 述:模板管理 /// public class TemplateController : MvcControllerBase { /// /// 模板列表 /// /// [HttpGet] [HandlerAuthorize(PermissionMode.Enforce)] public ActionResult Index() { return View(); } /// /// 单表生成器 /// /// [HttpGet] public ActionResult SingleTable() { return View(); } /// /// 多表生成器 /// /// [HttpGet] public ActionResult MultiTable() { return View(); } } }