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