feat:添加缓存监控页面

This commit is contained in:
陈淳
2023-04-19 11:19:36 +08:00
parent dd2b584c3d
commit cb75196455
5 changed files with 87 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Furion.Core.Rbac.Dtos.MonitorCache
{
public class MonitorCacheGetListOutputDto
{
public string CacheName { get; set; }
public string CacheKey { get; set; }
public string CacheValue { get; set; }
public string Remark { get; set; }
}
}

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Furion.Core.Rbac.Dtos.MonitorCache
{
public class MonitorCacheNameGetListOutputDto
{
public string CacheName { get; set; }
public string Remark { get; set; }
}
}