41 lines
875 B
C#
41 lines
875 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|||
|
|
|
|||
|
|
/// <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; }
|
|||
|
|
|
|||
|
|
}
|