using Microsoft.AspNetCore.Mvc; namespace EC.Web.Areas.LR_CodeDemo.Controllers { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.09.27 /// 描 述:信息可视化演示 /// [Area("LR_CodeDemo")] public class ImgShowController : MvcControllerBase { [HttpGet] public IActionResult Demo1() { return View(); } [HttpGet] public IActionResult Demo2() { return View(); } [HttpGet] public IActionResult Demo3() { return View(); } } }