28 lines
700 B
C#
28 lines
700 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);
|
|
|
|
/// <summary>
|
|
/// 导出日志信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
public List<Inventorylog> ExportInventorylog(InventorylogExportDto model);
|
|
}
|
|
}
|