Files
Yi.Admin/Yi.Framework.Net6/src/project/Yi.Framework.Application.Contracts/School/IStudentService.cs

19 lines
530 B
C#
Raw Normal View History

using System;
2023-01-12 14:58:16 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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
namespace Yi.Framework.Application.Contracts.School
2023-01-12 14:58:16 +08:00
{
/// <summary>
/// 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
{
}
}