23 lines
469 B
C#
23 lines
469 B
C#
|
|
using DOAN.Model.PBL.Dto;
|
|
using DOAN.Model.PBL;
|
|
|
|
namespace DOAN.Service.PBL.IService
|
|
{
|
|
/// <summary>
|
|
/// 库存日志service接口
|
|
/// </summary>
|
|
public interface IInventorylogService : IBaseService<Inventorylog>
|
|
{
|
|
PagedInfo<InventorylogDto> GetList(InventorylogQueryDto parm);
|
|
|
|
Inventorylog GetInfo(string Id);
|
|
|
|
|
|
Inventorylog AddInventorylog(Inventorylog parm);
|
|
int UpdateInventorylog(Inventorylog parm);
|
|
|
|
|
|
}
|
|
}
|