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 ILesDeviceWaringService { Task Add(AddLesDeviceWaringInput input); Task Delete(DeleteLesDeviceWaringInput input); Task Get([FromQuery] QueryeLesDeviceWaringInput input); Task> List([FromQuery] LesDeviceWaringInput input); Task> Page([FromQuery] LesDeviceWaringSearch input); Task Update(UpdateLesDeviceWaringInput input); Task> ListNonPageAsync([FromQuery] LesDeviceWaringSearchNonPage input); Task FromExcelAsync(IFormFile file, [FromQuery] ImportExcelType importExcelType); Task DownloadExcelTemplate(string version); } }