初始化项目

This commit is contained in:
2025-11-20 09:50:21 +08:00
commit 94b24e1a5d
4209 changed files with 1570805 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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();
}
}
}