| | |
| | | { |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 叠盘机状态切换 |
| | | /// </summary> |
| | | public class MoboxChangeStatus |
| | | { |
| | | public string Type { get; set; } |
| | | } |
| | | /// <summary> |
| | | /// mobox 接口返回 |
| | | /// </summary> |
| | |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | } |
| | | |
| | | |
| | | |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收返回参数 |
| | |
| | | /// <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; } |
| | |
| | | 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 |
| | | } |
| | | |