36 lines
729 B
C#
36 lines
729 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Dto.Container;
|
|
|
|
/// <summary>
|
|
/// 四向车请求入库任务的请求类
|
|
/// </summary>
|
|
public class CreateInstoreTaskRequest
|
|
{
|
|
/// <summary>
|
|
/// 请求ID
|
|
/// </summary>
|
|
[JsonPropertyName("requestId")]
|
|
public string? RequestId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密钥
|
|
/// </summary>
|
|
[JsonPropertyName("key")]
|
|
public string? Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// 载具号
|
|
/// </summary>
|
|
[JsonPropertyName("palletno")]
|
|
public string? PalleetNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求位置
|
|
/// </summary>
|
|
[JsonPropertyName("fromcellno")]
|
|
public string? FormCellNo { get; set; }
|
|
|
|
|
|
}
|