宁波既有建筑外墙脱落问卷调查系统开发 三居系统数据源讨论,和 页面开发

This commit is contained in:
范露尧
2023-06-26 18:21:55 +08:00
parent a8c8955f73
commit 22d312934d
5 changed files with 1179 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Ewide.Web.Entry.Controllers
{
public class OutsideWallController : Controller
{
[AllowAnonymous]
public IActionResult Index()
{
return View();
}
}
}