using System.Text.Json.Serialization; namespace WcsMain.ApiServe.Dto.WMSEntity.Convey; public class GetConveyTaskRequest { /// /// 任务组 /// [JsonPropertyName("taskGroup")] public string? TaskGroup { get; set; } /// /// 载具号 /// [JsonPropertyName("vehicleNo")] public string? VehicleNo { get; set; } /// /// 任务类型 /// [JsonPropertyName("taskType")] public int? TaskType { get; set; } /// /// 点位 /// [JsonPropertyName("location")] public string[]? Locations { get; set; } /// /// 备注 /// [JsonPropertyName("remark")] public string? Remark { get; set; } }