mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-06 01:30:53 +08:00
13 lines
400 B
C#
13 lines
400 B
C#
using Yi.Framework.Ddd.Application.Contracts;
|
|
using Yi.Framework.Rbac.Application.Contracts.Dtos.User;
|
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.IServices
|
|
{
|
|
/// <summary>
|
|
/// User服务抽象
|
|
/// </summary>
|
|
public interface IUserService : IYiCrudAppService<UserGetOutputDto, UserGetListOutputDto, Guid, UserGetListInputVo, UserCreateInputVo, UserUpdateInputVo>
|
|
{
|
|
}
|
|
}
|