using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.JuShi.LISTA.process
{
public class HttpModel
{
///
/// 任务上报
///
public class Reportback
{
///
/// 任务号
///
public string taskNum { get; set; }
///
/// 单号
///
public string orderNum { get; set; }
///
/// 任务状态
///
public int taskStatus { get; set; }
}
///
/// 安全请求
///
public class TaskAccess
{
///
/// 任务号
///
public string taskNum { get; set; }
///
/// 单号
///
public string orderNum { get; set; }
///
/// 点位
///
public string station { get; set; }
///
/// 类型
///
public int type { get; set; }
///
/// 任务状态
///
public int taskStatus { get; set; }
}
///
/// 空托返回
///
public class Traystacker
{
///
/// 货位编码,起点位置编码
///
public string LocationCode { get; set; }
///
/// 物料号
///
public string PartNumber { get; set; }
///
/// 数量
///
public int Qty { get; set; }
}
///
/// mes任务回报
///
public partial class StatusArrive
{
///
/// 库位编号
///
[JsonProperty("locationNum")]
public string LocationNum { get; set; }
///
/// 取消信息
///
[JsonProperty("message")]
public string Message { get; set; }
///
/// 状态
///
[JsonProperty("status")]
public string Status { get; set; }
///
/// 任务号
///
[JsonProperty("taskNumber")]
public string TaskNumber { get; set; }
///
/// 状态变更时间
///
[JsonProperty("time")]
public string Time { get; set; }
}
public partial class iteminfoArrive
{
///
/// 到货时间
///
[JsonProperty("arricalTime")]
public string ArricalTime { get; set; }
///
/// 库位编号
///
[JsonProperty("locationNum")]
public string LocationNum { get; set; }
[JsonProperty("lotList")]
public LotList[] LotList { get; set; }
///
/// 物料描述
///
[JsonProperty("partDesc")]
public string PartDesc { get; set; }
///
/// 物料编号
///
[JsonProperty("partNumber")]
public string PartNumber { get; set; }
///
/// 工装编号
///
[JsonProperty("rfid")]
public string Rfid { get; set; }
///
/// 任务号
///
[JsonProperty("taskNumber")]
public string TaskNumber { get; set; }
}
public partial class LotList
{
///
/// 物料批次信息
///
[JsonProperty("lotNumber")]
public string LotNumber { get; set; }
///
/// 重量
///
[JsonProperty("weight")]
public double? Weight { get; set; }
}
}
}