mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 21:46:38 +08:00
19 lines
582 B
C#
19 lines
582 B
C#
using Yi.BBS.Application.Contracts.Forum;
|
|
using Cike.AutoWebApi.Setting;
|
|
using Yi.BBS.Application.Contracts.Forum.Dtos;
|
|
using Yi.BBS.Domain.Forum.Entities;
|
|
using Yi.Framework.Ddd.Services;
|
|
using Yi.BBS.Application.Contracts.Forum.Dtos.Plate;
|
|
|
|
namespace Yi.BBS.Application.Forum
|
|
{
|
|
/// <summary>
|
|
/// Plate服务实现
|
|
/// </summary>
|
|
[AppService]
|
|
public class PlateService : CrudAppService<PlateEntity, PlateGetOutputDto, PlateGetListOutputDto, long, PlateGetListInputVo, PlateCreateInputVo, PlateUpdateInputVo>,
|
|
IPlateService, IAutoApiService
|
|
{
|
|
}
|
|
}
|