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