Files
WMS-Api/src/WMS.Web.Core/Dto/InStockTask/InStockTaskBoxInfoDto.cs
2024-03-27 10:12:37 +08:00

83 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStockTask
{
/// <summary>
/// 任务箱信息
/// </summary>
public class InStockTaskBoxInfoDto
{
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 箱编码
/// </summary>
public string BoxBillNo { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string Specifications { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public string ReceiveTime { get; set; }
/// <summary>
/// 收货人
/// </summary>
public string Receiver { get; set; }
/// <summary>
/// 上架人
/// </summary>
public string Shelfer { get; set; }
/// <summary>
/// 入库方式:内部用
/// </summary>
public int MethodForInt { get; set; }
/// <summary>
/// 入库方式1按箱2按产品
/// </summary>
public string Method { get; set; }
/// <summary>
/// 入库时间(上架时间)
/// </summary>
public string ShelfTime { get; set; }
/// <summary>
/// 箱数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 收货数量
/// </summary>
public decimal ReceiveQty { get; set; }
/// 入库数量
/// </summary>
public decimal RealityQty { get; set; }
/// <summary>
/// 序列号
/// </summary>
public string SerialNumbers { get; set; }
}
}