lss
2025-05-15 dc5be5ac7d2a5aae1618fe3d1d8a689d10fdc9dc
HH.WCS.Mobox3/HH.WCS.Mobox3.DaYang/api/ApiModel.cs
@@ -252,12 +252,16 @@
            [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; }
        }
@@ -314,7 +318,38 @@
            [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
        {