2023-01-04 15:46:29 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Yi.Framework.Common.Models;
|
|
|
|
|
using Yi.Framework.DtoModel.ERP.Warehouse;
|
|
|
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Interface.ERP
|
|
|
|
|
{
|
|
|
|
|
public interface IWarehouseService : ICrudAppService<WarehouseGetListOutput, long, WarehouseCreateUpdateInput>
|
|
|
|
|
{
|
2023-01-06 12:02:48 +08:00
|
|
|
Task<PageModel<List<WarehouseGetListOutput>>> PageListAsync(WarehouseGetListInput input, PageParModel page);
|
2023-01-04 15:46:29 +08:00
|
|
|
}
|
|
|
|
|
}
|