You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
583 B
33 lines
583 B
3 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace EC.Web.Areas.LR_CodeDemo.Controllers
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.09.27
|
||
|
/// 描 述:信息可视化演示
|
||
|
/// </summary>
|
||
|
[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();
|
||
|
}
|
||
|
}
|
||
|
}
|