根据出库任务单获取出库任务信息

This commit is contained in:
18942506660
2023-11-03 09:49:21 +08:00
parent eac6c6b269
commit 8494ca6662
12 changed files with 220 additions and 4 deletions

View File

@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.OutStockTask
{
/// <summary>
/// 根据单号搜索出库单任务信息
/// </summary>
public class GetOutStockTaskByNoResponse
{
/// <summary>
/// 主键 订单编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 详情
/// </summary>
public List<GetOutStockTaskByNoDetailsResponse> details { get; set; } = new List<GetOutStockTaskByNoDetailsResponse>();
}
public class GetOutStockTaskByNoDetailsResponse
{
/// <summary>
/// 物料Id
///</summary>
public int MaterialId { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string MaterialName { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string Specifications { get; set; }
/// <summary>
/// 应出库数量
///</summary>
public decimal AccruedQty { get; set; }
/// <summary>
/// 已出库数量
///</summary>
public decimal RealityQty { get; set; }
}
}