Files
Web_AuthorityManagement_Mvc…/UI/Controllers/LogController.cs

21 lines
452 B
C#
Raw Normal View History

2025-11-20 09:50:21 +08:00
using Services.Cache;
using Services.Manager;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Newtonsoft.Json;
namespace UI.Controllers
{
public class LogController : BaseController
{
public ActionResult Index()
{
//CacheHelp.Removesys(CacheHelp.syskey.sysDbLogListKey);
ViewBag.Select = 4;
return View();
}
}
}