找到已收货的箱子
This commit is contained in:
27
src/WMS.Web.Core/Dto/InStockTask/ReceiveBoxResponse.cs
Normal file
27
src/WMS.Web.Core/Dto/InStockTask/ReceiveBoxResponse.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.InStockTask
|
||||
{
|
||||
/// <summary>
|
||||
/// 收货箱
|
||||
/// </summary>
|
||||
public class ReceiveBoxResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务ID
|
||||
/// </summary>
|
||||
public int TaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱ID
|
||||
/// </summary>
|
||||
public int BoxId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱编码
|
||||
/// </summary>
|
||||
public string BoxBillNo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user