入库单-列表接口

This commit is contained in:
tongfei
2023-10-27 09:30:17 +08:00
parent eec8396a91
commit 8221eae779
8 changed files with 126 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ namespace WMS.Web.Domain.Entitys
/// <summary>
/// 同步成功或者失败
/// </summary>
public bool SuccessSync { get; set; }
public bool? SuccessSync { get; set; }
/// <summary>
/// 明细

View File

@@ -1,6 +1,9 @@
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
{
@@ -9,5 +12,11 @@ namespace WMS.Web.Domain.Infrastructure
/// </summary>
public interface IInStockRepositories
{
/// <summary>
/// 列表-分页
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
Task<ResultPagedList<InStockQueryResponse>> GetPagedList(InStockQueryRequest dto);
}
}