| | |
| | | [JsonProperty("to", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string To { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设备信号反馈 |
| | | /// </summary> |
| | | public partial class PutInModel |
| | | { |
| | | /// <summary> |
| | | /// 起点 |
| | | /// </summary> |
| | | public string StartBit { get; set; } |
| | | public string startBit { get; set; } |
| | | |
| | | } |
| | | |
| | |
| | | [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 |
| | | { |
| | | |