using Newtonsoft.Json;
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
///
/// 上报输送线按钮
///
public class ConceyButtonClickRequest
{
///
/// 载具号
///
[JsonProperty("vehicleNo")]
public string? VehicleNo { get; set; }
///
/// 拣选站台
///
[JsonProperty("location")]
public string? Location { get; set; }
///
/// 备注
///
[JsonProperty("remark")]
public string? Remark { get; set; }
}