50 lines
1002 B
C#
50 lines
1002 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Dto.Container;
|
|
|
|
/// <summary>
|
|
/// 四向车请求任务的返回类
|
|
/// </summary>
|
|
public class CreateInstoreTaskResoponse
|
|
{
|
|
/// <summary>
|
|
/// 响应码
|
|
/// </summary>
|
|
[JsonPropertyName("code")]
|
|
public string? Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务号
|
|
/// </summary>
|
|
[JsonPropertyName("wmstaskid")]
|
|
public string? WmsTaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 载具号
|
|
/// </summary>
|
|
[JsonPropertyName("palletno")]
|
|
public string? PalletNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起点位置
|
|
/// </summary>
|
|
[JsonPropertyName("fromcellno")]
|
|
public string? FromCellNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 终点位置
|
|
/// </summary>
|
|
[JsonPropertyName("tocellno")]
|
|
public string? ToCellNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 响应信息
|
|
/// </summary>
|
|
[JsonPropertyName("message")]
|
|
public string? Message { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|