This commit is contained in:
454313500@qq.com
2021-04-15 16:49:35 +08:00
parent 6c73ef64cb
commit 577c131163
6 changed files with 82 additions and 136 deletions

View File

@@ -1,4 +1,5 @@
using CC.Yi.Common;
using CC.Yi.Common.Cache;
using CC.Yi.IBLL;
using CC.Yi.Model;
using Microsoft.AspNetCore.Identity;
@@ -49,6 +50,15 @@ namespace CC.Yi.API.Controllers
// return Ok();
//}
#region
//下面这里是操作reids
#endregion
[HttpGet]
public Result GetReids()
{
var data = CacheHelper.CacheWriter.GetCache<string>("key01");
return Result.Success(data);
}
#region