using System.Text.Json.Serialization; namespace WcsMain.ApiClient.DataEntity.WmsEntity; /// /// 发送WMS任务状态请求实体 /// public class SendWmsTaskStatusRequest { /// /// 任务号 /// [JsonPropertyName("taskId")] public string? TaskId { get; set; } /// /// 任务状态 /// [JsonPropertyName("taskStatus")] public int? TaskStatus { get; set; } /// /// 任务类型 /// [JsonPropertyName("destination")] public string? Destination { get; set; } /// /// 载具号 /// [JsonPropertyName("vehicleNo")] public string? VehicleNo { get; set; } /// /// 信息 /// [JsonPropertyName("message")] public string? Message { get; set; } }