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