回退仓储

This commit is contained in:
tongfei
2023-10-30 18:12:20 +08:00
parent 0fedf62c93
commit 3b8558b793
8 changed files with 333 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Internal.Results;
namespace WMS.Web.Domain.Infrastructure
{
/// <summary>
/// 出入库回退记录-仓储接口
/// </summary>
public interface IBackRecordRepositories
{
/// <summary>
/// 列表-分页
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
Task<ResultPagedList<BackRecordQueryResponse>> GetPagedList(BackRecordQueryRequest dto);
}
}