liuying
2024-04-24 c80cf6b099698e34bc7d5d50469404fe3bc8701d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 IVStudentService
    {
        Task<VStudentOutput> Get([FromQuery] QueryeVStudentInput input);
        Task<List<VStudentOutput>> List([FromQuery] VStudentInput input);
        Task<PageResult<VStudentOutput>> Page([FromQuery] VStudentSearch input);
        Task<List<VStudentOutput>> ListNonPageAsync([FromQuery] VStudentSearchNonPage input);
        
 
        Task<IActionResult> ToExcelAsync([FromQuery] VStudentSearchNonPage input);
    }
}