mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
11 lines
467 B
C#
11 lines
467 B
C#
using NetAdmin.SysComponent.Domain.Dto.Sys.LoginLog;
|
|
|
|
namespace NetAdmin.SysComponent.Application.Modules.Sys;
|
|
|
|
/// <summary>
|
|
/// 登录日志模块
|
|
/// </summary>
|
|
public interface ILoginLogModule : ICrudModule<CreateLoginLogReq, QueryLoginLogRsp // 创建类型
|
|
, QueryLoginLogReq, QueryLoginLogRsp // 查询类型
|
|
, DelReq // 删除类型
|
|
>; |