22 lines
515 B
C#
22 lines
515 B
C#
using MyCode.Project.Domain.Businesses;
|
|
using MyCode.Project.Domain.Dtos.Common;
|
|
using MyCode.Project.Domain.Procs;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
/// <summary>
|
|
/// 通用模块 相关服务
|
|
/// </summary>
|
|
public interface IRedisService
|
|
{
|
|
/// <summary>
|
|
/// 获取模糊搜索的所有的key
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<string> GetAllKeys(string key = "WebSocket*");
|
|
|
|
}
|
|
}
|