liuying
2024-04-23 82f7b3c19adfac9f2ccde3e09097d1c0b2cfd7ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
    }
}