mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-10 03:30:51 +08:00
19 lines
530 B
C#
19 lines
530 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using Yi.Framework.Application.Contracts.School.Dtos;
|
||
using Yi.Framework.Ddd.Services.Abstract;
|
||
|
||
namespace Yi.Framework.Application.Contracts.School
|
||
{
|
||
/// <summary>
|
||
/// Student<6E><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
/// </summary>
|
||
public interface IStudentService : ICrudAppService<StudentGetOutputDto, StudentGetListOutputDto, long, StudentGetListInputVo, StudentCreateInputVo, StudentUpdateInputVo>
|
||
{
|
||
|
||
}
|
||
}
|