46 lines
952 B
C#
46 lines
952 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 请求入库接口返回值
|
|||
|
|
/// </summary>
|
|||
|
|
public class ApplyInResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 入库任务ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("taskId")]
|
|||
|
|
public string? TaskId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("user")]
|
|||
|
|
public string? User { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 载具号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("vehicleNo")]
|
|||
|
|
public string? VehicleNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终点
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("destination")]
|
|||
|
|
public string? Destination { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用1
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("spare1")]
|
|||
|
|
public string? Spare1 { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备用2
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("spare2")]
|
|||
|
|
public string? Spare2 { get; set; }
|
|||
|
|
|
|||
|
|
}
|