通过编号查询到任务采购单据

This commit is contained in:
tongfei
2023-11-02 16:34:08 +08:00
parent f58556b0c4
commit f1cd7f0f5f
12 changed files with 457 additions and 181 deletions

View File

@@ -9,5 +9,22 @@ namespace WMS.Web.Core.Dto.InStockTask
/// </summary>
public class InStockTaskInfoDto
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 来源单号
/// </summary>
public string SourceBillNo { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<InStockTaskDetailsInfoDto> Details = new List<InStockTaskDetailsInfoDto>();
}
}