payne
2024-04-24 c755f1fce97d09044f294a478e4b2d75dd931362
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);
    }
}