Files
Yi.Framework/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application.Contracts/IServices/IPlateService.cs
2023-12-11 09:55:12 +08:00

14 lines
407 B
C#

using Yi.Framework.Bbs.Application.Contracts.Dtos.Plate;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Bbs.Application.Contracts.IServices
{
/// <summary>
/// Plate服务抽象
/// </summary>
public interface IPlateService : IYiCrudAppService<PlateGetOutputDto, PlateGetListOutputDto, Guid, PlateGetListInputVo, PlateCreateInputVo, PlateUpdateInputVo>
{
}
}