28 lines
540 B
C#
28 lines
540 B
C#
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; }
|
|
}
|
|
}
|