| | |
| | | /// <summary> |
| | | /// 设备信号反馈 |
| | | /// </summary> |
| | | public partial class PutInModel |
| | | public partial class NotifyDeviceSignalModel |
| | | { |
| | | /// <summary> |
| | | /// 起点 |
| | | /// 托盘号,可空,多个托盘号可以拼接 |
| | | /// </summary> |
| | | public string startBit { get; set; } |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 设备编号 |
| | | /// </summary> |
| | | [JsonProperty("deviceNo")] |
| | | public string DeviceNo { get; set; } |
| | | |
| | | [JsonProperty("extData")] |
| | | public Dictionary<string, object>[] ExtData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 货位,上料点、下料点、读码位、称重位 |
| | | /// </summary> |
| | | [JsonProperty("loc")] |
| | | public string Loc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 请求类型,1:入库申请 |
| | | /// </summary> |
| | | [JsonProperty("signalType")] |
| | | public int SignalType { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 任务状态反馈 |
| | | /// </summary> |
| | | public partial class NotifyTaskStatusModel |
| | | { |
| | | /// <summary> |
| | | /// 设备号 |
| | | /// </summary> |
| | | [JsonProperty("deviceNo")] |
| | | public string DeviceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 异常代码,主要是针对各种异常取消的描述 |
| | | /// </summary> |
| | | [JsonProperty("errCode")] |
| | | public int ErrCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前托盘位置 |
| | | /// </summary> |
| | | [JsonProperty("loc")] |
| | | public string Loc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务状态,1:开始/执行中;2:完成;3:准备取货;4:取货完成;5:准备卸货;6:卸货完成;7:异常取消;8:强制完成 |
| | | /// </summary> |
| | | [JsonProperty("status")] |
| | | public int Status { get; set; } |
| | | |
| | | /// <summary> |
| | | /// wcs的子任务号,如果wcs任务拆分了,可以一起上报子任务号,方便日志追踪 |
| | | /// </summary> |
| | | [JsonProperty("subTaskNo")] |
| | | public string SubTaskNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNo")] |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取托盘物料信息 |
| | | /// </summary> |
| | | public partial class GetCntrInfoModel |
| | | { |
| | | /// <summary> |
| | | /// 托盘号 |
| | | /// </summary> |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | } |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收返回参数 |
| | | |
| | | |
| | | /// <summary> |
| | | /// 设备信息返回 |
| | | /// </summary> |
| | |
| | | [JsonProperty("workStatus")] |
| | | public int WorkStatus { get; set; } |
| | | } |
| | | /// <summary> |
| | | /// 设备信号反馈 |
| | | /// </summary> |
| | | public partial class EquipmentInfoModel |
| | | { |
| | | /// <summary> |
| | | /// 托盘号,可空,多个托盘号可以拼接 |
| | | /// </summary> |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 设备编号 |
| | | /// </summary> |
| | | [JsonProperty("deviceNo")] |
| | | public string DeviceNo { get; set; } |
| | | |
| | | [JsonProperty("extData")] |
| | | public Dictionary<string, object>[] ExtData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 货位,上料点、下料点、读码位、称重位 |
| | | /// </summary> |
| | | [JsonProperty("loc")] |
| | | public string Loc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 请求类型,1:入库申请 |
| | | /// </summary> |
| | | [JsonProperty("signalType")] |
| | | public long SignalType { get; set; } |
| | | } |
| | | |
| | | public partial class Empty |
| | | { |
| | | |