lss
2025-06-18 64ec1a7fb55389d8db371d112e49f741de866796
HH.WCS.Mobox3/HH.WCS.Mobox3.DaYang/api/ApiModel.cs
@@ -82,6 +82,14 @@
        {
            public string TaskNo { get; set; }
        }
        /// <summary>
        /// 叠盘机状态切换
        /// </summary>
        public class MoboxChangeStatus
        {
            public string Type { get; set; }
        }
        /// <summary>
        /// mobox 接口返回
        /// </summary>
@@ -339,6 +347,9 @@
            [JsonProperty("cntrNo")]
            public string CntrNo { get; set; }
        }
        #endregion
        #region 大洋立库接口接收返回参数
@@ -346,13 +357,25 @@
        /// <summary>
        /// 设备信息返回
        /// </summary>
        public partial class Result<T>
        public partial class Results<T>
        {
            [JsonProperty("code")]
            public long Code { get; set; }
            [JsonProperty("data")]
            public List<T> Data { get; set; }
            [JsonProperty("msg")]
            public string Msg { get; set; }
        }
        public partial class Result<T>
        {
            [JsonProperty("code")]
            public int Code { get; set; }
            [JsonProperty("data")]
            public T Data { get; set; }
            [JsonProperty("msg")]
            public string Msg { get; set; }
@@ -417,10 +440,38 @@
            public string TaskNo { get; set; }
        }
        /// <summary>
        /// 申请终点返回
        /// </summary>
        public partial class ReseltApplyDestModel
        {
            [JsonProperty("loc")]
            public string Loc { get; set; }
        }
        public partial class Empty
        {
         
        }
        /// <summary>
        /// 设备状态切换
        /// </summary>
        public partial class ChangeStatusModel
        {
            /// <summary>
            /// 设备编码
            /// </summary>
            [JsonProperty("deviceNo")]
            public string DeviceNo { get; set; }
            /// <summary>
            /// 模式类型,1:叠托模式/2:拆托模式
            /// 叠托模式,不需要拆分托盘到入库口。
            /// 拆托模式,需要拆分托盘到入库口
            /// </summary>
            [JsonProperty("Type")]
            public string Type { get; set; }
        }
        #endregion
    }