mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
18 lines
550 B
C#
18 lines
550 B
C#
using Yi.BBS.Application.Contracts.School;
|
|
using NET.AutoWebApi.Setting;
|
|
using Yi.BBS.Application.Contracts.School.Dtos;
|
|
using Yi.BBS.Domain.School.Entities;
|
|
using Yi.Framework.Ddd.Services;
|
|
|
|
namespace Yi.BBS.Application.School
|
|
{
|
|
/// <summary>
|
|
/// Student服务实现
|
|
/// </summary>
|
|
[AppService]
|
|
public class StudentService : CrudAppService<StudentEntity, StudentGetOutputDto, StudentGetListOutputDto, long, StudentGetListInputVo, StudentCreateInputVo, StudentUpdateInputVo>,
|
|
IStudentService, IAutoApiService
|
|
{
|
|
}
|
|
}
|