1
payne
2024-04-25 73e52dd9e61cabc5c05da94e7f4c024078f0be31
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 IWmsControlRuleDetailService
    {
        Task<WmsControlRuleDetailOutput> Get([FromQuery] QueryeWmsControlRuleDetailInput input);
        Task<List<WmsControlRuleDetailOutput>> List([FromQuery] WmsControlRuleDetailInput input);
        Task<PageResult<WmsControlRuleDetailOutput>> Page([FromQuery] WmsControlRuleDetailSearch input);
        Task<List<WmsControlRuleDetailOutput>> ListNonPageAsync([FromQuery] WmsControlRuleDetailSearchNonPage input);
        
        Task Add(AddWmsControlRuleDetailInput input);
        Task Update(UpdateWmsControlRuleDetailInput input);
        Task Delete(DeleteWmsControlRuleDetailInput input);
        Task<int> ImportExcelAsync(IFormFile file);
        IActionResult DownloadExcelTemplate(string version);
    }
}