using System.Web.Mvc;
namespace Learun.Application.Web.Areas.LR_CodeGeneratorModule.Controllers
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2017.03.09
/// 描 述:JS插件Demo
///
public class PluginDemoController : MvcControllerBase
{
#region 视图功能
///
/// JS插件展示
///
///
[HttpGet]
public ActionResult Index()
{
return View();
}
#endregion
}
}