2024-10-01 02:34:26 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace Parking_spaces.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class ManagerController : Controller
|
|
|
|
|
{
|
|
|
|
|
public IActionResult Manager_Index()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
public IActionResult Manager_Violation()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
public IActionResult Single_violation_detail(string id)
|
|
|
|
|
{
|
|
|
|
|
ViewBag.parking_spaces_name = id;
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Yuntech_in_car()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Map_RTSP(string id)
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Manager_parking_user_list_index()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2024-11-14 18:48:05 +08:00
|
|
|
|
|
|
|
|
|
public IActionResult ParkingLog()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
2024-10-01 02:34:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|