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