mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-12-30 09:25:49 +08:00
14 lines
666 B
C#
14 lines
666 B
C#
using NetAdmin.Application.Modules;
|
|
using NetAdmin.Domain.Dto.Dependency;
|
|
using NetAdmin.Domain.Dto.Sys.UserProfile;
|
|
|
|
namespace NetAdmin.SysComponent.Application.Modules.Sys;
|
|
|
|
/// <summary>
|
|
/// 用户档案模块
|
|
/// </summary>
|
|
public interface IUserProfileModule : ICrudModule<CreateUserProfileReq, QueryUserProfileRsp // 创建类型
|
|
, QueryUserProfileReq, QueryUserProfileRsp // 查询类型
|
|
, UpdateUserProfileReq, QueryUserProfileRsp // 修改类型
|
|
, DelReq // 删除类型
|
|
>; |