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 IWmsSubstituteGoodService
|
{
|
Task<WmsSubstituteGoodOutput> Get([FromQuery] QueryeWmsSubstituteGoodInput input);
|
Task<List<WmsSubstituteGoodOutput>> List([FromQuery] WmsSubstituteGoodInput input);
|
Task<PageResult<WmsSubstituteGoodOutput>> Page([FromQuery] WmsSubstituteGoodSearch input);
|
Task<List<WmsSubstituteGoodOutput>> ListNonPageAsync([FromQuery] WmsSubstituteGoodSearchNonPage input);
|
|
Task Add(AddWmsSubstituteGoodInput input);
|
Task Update(UpdateWmsSubstituteGoodInput input);
|
Task Delete(DeleteWmsSubstituteGoodInput input);
|
Task<int> ImportExcelAsync(IFormFile file);
|
IActionResult DownloadExcelTemplate(string version);
|
}
|
}
|