2024-10-07 09:51:55 +08:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiClient.WMS.Dto;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上传箱子到达拣选口的请求类
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class UploadPickStandRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务组
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("taskGroup")]
|
|
|
|
|
|
public string? TaskGroup { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
}
|