Files
Yi.Admin/Yi.Framework.Net6/test/Yi.Framework.Application.Contracts/Student/IStudentService.cs

19 lines
519 B
C#
Raw Normal View History

2023-01-12 14:58:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-15 14:32:43 +08:00
using Yi.Framework.Application.Contracts.Student.Dtos;
using Yi.Framework.Ddd.Services.Abstract;
2023-01-12 14:58:16 +08:00
namespace Yi.Framework.Application.Contracts.Student
{
/// <summary>
/// 服务抽象
/// </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
{
}
}