mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
18 lines
535 B
C#
18 lines
535 B
C#
|
|
using Yi.RBAC.Application.Contracts.Identity;
|
||
|
|
using NET.AutoWebApi.Setting;
|
||
|
|
using Yi.RBAC.Application.Contracts.Identity.Dtos;
|
||
|
|
using Yi.RBAC.Domain.Identity.Entities;
|
||
|
|
using Yi.Framework.Ddd.Services;
|
||
|
|
|
||
|
|
namespace Yi.RBAC.Application.Identity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Role服务实现
|
||
|
|
/// </summary>
|
||
|
|
[AppService]
|
||
|
|
public class RoleService : CrudAppService<RoleEntity, RoleGetOutputDto, RoleGetListOutputDto, long, RoleGetListInputVo, RoleCreateInputVo, RoleUpdateInputVo>,
|
||
|
|
IRoleService, IAutoApiService
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|