2023-01-21 22:40:10 +08:00
|
|
|
|
using System;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-21 22:40:10 +08:00
|
|
|
|
using Yi.Framework.Application.Contracts.School.Dtos;
|
2023-01-15 14:32:43 +08:00
|
|
|
|
using Yi.Framework.Ddd.Services.Abstract;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
|
2023-01-21 22:40:10 +08:00
|
|
|
|
namespace Yi.Framework.Application.Contracts.School
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2023-01-21 22:40:10 +08:00
|
|
|
|
/// Student<6E><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2023-01-12 14:58:16 +08:00
|
|
|
|
/// </summary>
|
2023-01-15 14:32:43 +08:00
|
|
|
|
public interface IStudentService : ICrudAppService<StudentGetOutputDto, StudentGetListOutputDto, long, StudentGetListInputVo, StudentCreateInputVo, StudentUpdateInputVo>
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|