using LeaRun.Application.Code;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace LeaRun.Application.Web.Areas.GeneratorManage.Controllers
{
///
/// 版 本 6.1
/// Copyright (c) 2013-2016 上海力软信息技术有限公司
/// 创建人:佘赐雄
/// 日 期: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();
}
}
}