2024-10-07 09:51:55 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiClient.WMS.Dto;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送WMS任务状态请求实体
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class SendWmsTaskStatusRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("taskId")]
|
|
|
|
|
|
public string? TaskId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("taskStatus")]
|
|
|
|
|
|
public int? TaskStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("destination")]
|
|
|
|
|
|
public string? Destination { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 载具号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("vehicleNo")]
|
|
|
|
|
|
public string? VehicleNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("message")]
|
|
|
|
|
|
public string? Message { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|