mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-13 21:16:38 +08:00
添加dto模式的demo测试
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Yi.Framework.DTOModel.RABC.Student;
|
||||
using Yi.Framework.Interface.Base.Crud;
|
||||
|
||||
namespace Yi.Framework.Interface.RABC
|
||||
{
|
||||
public interface IStudentService : ICrudAppService<StudentGetOutput, StudentListOutput, Guid, StudentCreateInput, StudentUpdateInput>
|
||||
{
|
||||
void GetError();
|
||||
Task<List<StudentListOutput>> GetListAsync();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user