任务详情
This commit is contained in:
82
src/WMS.Web.Core/Dto/InStockTask/InStockTaskBoxInfoDto.cs
Normal file
82
src/WMS.Web.Core/Dto/InStockTask/InStockTaskBoxInfoDto.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user