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