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