34 lines
743 B
C#
34 lines
743 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|
|
|
/// <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; }
|
|
} |