using Newtonsoft.Json; using System.Text.Json.Serialization; namespace WcsMain.ApiClient.DataEntity.WmsEntity; /// /// 上传箱子到达拣选口的请求类 /// public class UploadPickStandRequest { /// /// 任务组 /// [JsonProperty("taskGroup")] public string? TaskGroup { get; set; } /// /// 载具号 /// [JsonProperty("vehicleNo")] public string? VehicleNo { get; set; } /// /// 拣选站台 /// [JsonProperty("location")] public string? Location { get; set; } /// /// 备注 /// [JsonProperty("remark")] public string? Remark { get; set; } }