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.Unit;
|
|
|
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Interface.ERP
|
|
|
|
|
{
|
|
|
|
|
public interface IUnitService : ICrudAppService<UnitGetListOutput, long, UnitCreateUpdateInput>
|
|
|
|
|
{
|
2023-01-06 12:02:48 +08:00
|
|
|
Task<PageModel<List<UnitGetListOutput>>> PageListAsync(UnitGetListInput input, PageParModel page);
|
2023-01-04 15:46:29 +08:00
|
|
|
}
|
|
|
|
|
}
|