12 lines
368 B
C#
12 lines
368 B
C#
using ZR.Model;
|
|
using ZR.Service;
|
|
using ZR.ServiceCore.Model;
|
|
|
|
namespace ZR.ServiceCore.Services.IService;
|
|
|
|
public interface IIpRateLimitLogService : IBaseService<IpRateLimitLog>
|
|
{
|
|
void InsertIpRateLimitLogAsync(IpRateLimitLog ipRateLimitLog);
|
|
|
|
Task<PagedInfo<IpRateLimitLog>> SelectIpRateLimitLogPageAsync(IpRateLimitLog ipRateLimitLog, PagerInfo pager);
|
|
} |