21 lines
452 B
C#
21 lines
452 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|