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