feat: 新增标签模块

This commit is contained in:
橙子
2025-01-19 03:31:48 +08:00
parent 3be5675828
commit 438abf6cea
16 changed files with 211 additions and 181 deletions

View File

@@ -0,0 +1,12 @@
using Yi.Framework.Bbs.Application.Contracts.Dtos.MyType;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Bbs.Application.Contracts.IServices
{
/// <summary>
/// Label服务抽象
/// </summary>
public interface IDiscussLableService : IYiCrudAppService<DiscussLableOutputDto, DiscussLableGetListOutputDto, Guid, DiscussLableGetListInputVo, DiscussLableCreateInputVo, DiscussLableUpdateInputVo>
{
}
}