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 IWmsControlRuleService
|
{
|
Task<WmsControlRuleOutput> Get([FromQuery] QueryeWmsControlRuleInput input);
|
Task<List<WmsControlRuleOutput>> List([FromQuery] WmsControlRuleInput input);
|
Task<PageResult<WmsControlRuleOutput>> Page([FromQuery] WmsControlRuleSearch input);
|
Task<List<WmsControlRuleOutput>> ListNonPageAsync([FromQuery] WmsControlRuleSearchNonPage input);
|
|
Task Add(AddWmsControlRuleInput input);
|
Task Update(UpdateWmsControlRuleInput input);
|
Task Delete(DeleteWmsControlRuleInput input);
|
Task<int> ImportExcelAsync(IFormFile file);
|
IActionResult DownloadExcelTemplate(string version);
|
}
|
}
|