2023-01-24 21:02:39 +08:00
|
|
|
using Yi.BBS.Application.Contracts.Forum;
|
2023-02-22 19:21:21 +08:00
|
|
|
using Cike.AutoWebApi.Setting;
|
2023-01-24 21:02:39 +08:00
|
|
|
using Yi.BBS.Application.Contracts.Forum.Dtos;
|
|
|
|
|
using Yi.BBS.Domain.Forum.Entities;
|
|
|
|
|
using Yi.Framework.Ddd.Services;
|
2023-01-25 17:48:48 +08:00
|
|
|
using Yi.BBS.Application.Contracts.Forum.Dtos.Plate;
|
2023-01-24 21:02:39 +08:00
|
|
|
|
|
|
|
|
namespace Yi.BBS.Application.Forum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Plate服务实现
|
|
|
|
|
/// </summary>
|
|
|
|
|
[AppService]
|
|
|
|
|
public class PlateService : CrudAppService<PlateEntity, PlateGetOutputDto, PlateGetListOutputDto, long, PlateGetListInputVo, PlateCreateInputVo, PlateUpdateInputVo>,
|
|
|
|
|
IPlateService, IAutoApiService
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|