You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB
C#

#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2026 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.Wcs.Business.Domain.Dto.CreateTask
* 83DDF6CB-491B-4B60-8FFD-A8E62FCB3DCF
*
* WenJY
*
* 2026-05-07 09:07:10
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Wcs.Business.Domain.Dto.CreateTask;
public class CreateTaskDto
{
/// <summary>
/// 物料编号
/// </summary>
public string materialCode {get;set;}
/// <summary>
/// 物料条码
/// </summary>
public string materialBarcode {get;set;}
/// <summary>
/// 托盘条码
/// </summary>
public string palletBarcode {get;set;}
/// <summary>
/// 数量
/// </summary>
public string amount {get;set;}
}