using Admin.NET.Core; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace Admin.NET.Application { public interface ITestStudent3Service { Task Get([FromQuery] QueryeTestStudent3Input input); Task> List([FromQuery] TestStudent3Input input); Task> Page([FromQuery] TestStudent3Search input); Task> ListNonPageAsync([FromQuery] TestStudent3SearchNonPage input); Task ToExcelAsync([FromQuery] TestStudent3SearchNonPage input); } }