2023-01-06 12:02:48 +08:00
|
|
|
using System;
|
2023-01-02 17:27:12 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-02 23:32:40 +08:00
|
|
|
using Yi.Framework.Common.Models;
|
2023-01-02 17:27:12 +08:00
|
|
|
using Yi.Framework.DtoModel.ERP.Supplier;
|
|
|
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Interface.ERP
|
|
|
|
|
{
|
|
|
|
|
public interface ISupplierService : ICrudAppService<SupplierGetListOutput, long, SupplierCreateUpdateInput>
|
|
|
|
|
{
|
2023-01-06 12:02:48 +08:00
|
|
|
Task<PageModel<List<SupplierGetListOutput>>> PageListAsync(SupplierGetListInput input, PageParModel page);
|
2023-01-02 17:27:12 +08:00
|
|
|
}
|
|
|
|
|
}
|