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