任务详情

This commit is contained in:
tongfei
2024-03-27 10:12:37 +08:00
parent 621485fb4c
commit ca3a43c775
11 changed files with 461 additions and 12 deletions

View 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; }
}
}