| | |
| | | { |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 叠盘机状态切换 |
| | | /// </summary> |
| | | public class MoboxChangeStatus |
| | | { |
| | | public string Type { get; set; } |
| | | } |
| | | /// <summary> |
| | | /// mobox 接口返回 |
| | | /// </summary> |
| | |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收请求参数 |
| | | /// <summary> |
| | | /// 任务下发 |
| | | /// </summary> |
| | | public partial class TaskPushModel |
| | | { |
| | | /// <summary> |
| | | /// 托盘号 |
| | | /// </summary> |
| | | [JsonProperty("cntrNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string CntrNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 托盘类型 |
| | | /// </summary> |
| | | [JsonProperty("cntrType", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string CntrType { get; set; } |
| | | |
| | | [JsonProperty("extData", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string[] ExtData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 起点 |
| | | /// </summary> |
| | | [JsonProperty("from", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string From { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务分组 |
| | | /// </summary> |
| | | [JsonProperty("groupNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string GroupNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string TaskNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务类型 |
| | | /// </summary> |
| | | [JsonProperty("taskType", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string TaskType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 终点 |
| | | /// </summary> |
| | | [JsonProperty("to", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string To { get; set; } |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 设备信号反馈 |
| | |
| | | public string Loc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 请求类型,1:入库申请 |
| | | /// 请求类型,1:入库申请 2:叠盘请求(叠盘状态允许使用) |
| | | /// </summary> |
| | | [JsonProperty("signalType")] |
| | | public int SignalType { get; set; } |
| | | /// <summary> |
| | | /// 重量 |
| | | /// </summary> |
| | | [JsonProperty("weight")] |
| | | public string Weight { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | [JsonProperty("cntrNo")] |
| | | public string CntrNo { get; set; } |
| | | } |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收返回参数 |
| | | |
| | | /// <summary> |
| | | /// 设备信息返回 |
| | | /// 设备报警上报 |
| | | /// </summary> |
| | | public partial class Result<T> |
| | | public partial class NotifyAlarmModel |
| | | { |
| | | [JsonProperty("code")] |
| | | public long Code { get; set; } |
| | | /// <summary> |
| | | /// 设备编号 |
| | | /// </summary> |
| | | [JsonProperty("deviceNo")] |
| | | public string DeviceNo { get; set; } |
| | | |
| | | [JsonProperty("data")] |
| | | public List<T> Data { get; set; } |
| | | /// <summary> |
| | | /// 错误码 |
| | | /// </summary> |
| | | [JsonProperty("errCode")] |
| | | public string ErrCode { get; set; } |
| | | |
| | | [JsonProperty("msg")] |
| | | public string Msg { get; set; } |
| | | /// <summary> |
| | | /// 错误信息 |
| | | /// </summary> |
| | | [JsonProperty("errMsg")] |
| | | public string ErrMsg { get; set; } |
| | | } |
| | | #endregion |
| | | |
| | | #region 大洋立库接口下发参数 |
| | | /// <summary> |
| | | /// 设备信息 |
| | | /// </summary> |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 任务下发 |
| | | /// </summary> |
| | | public partial class TaskPushModel |
| | | { |
| | | /// <summary> |
| | | /// 托盘号 |
| | | /// </summary> |
| | | [JsonProperty("cntrNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string CntrNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 托盘类型 |
| | | /// </summary> |
| | | [JsonProperty("cntrType", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string CntrType { get; set; } |
| | | |
| | | [JsonProperty("extData", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string[] ExtData { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 起点 |
| | | /// </summary> |
| | | [JsonProperty("from", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string From { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务分组 |
| | | /// </summary> |
| | | [JsonProperty("groupNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string GroupNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNo", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string TaskNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务类型 |
| | | /// </summary> |
| | | [JsonProperty("taskType", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string TaskType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 终点 |
| | | /// </summary> |
| | | [JsonProperty("to", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string To { get; set; } |
| | | } |
| | | |
| | | /// <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; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 修改任务优先级 |
| | | /// </summary> |
| | | public partial class ChangePriorityModel |
| | | { |
| | | /// <summary> |
| | | /// 优先级 |
| | | /// </summary> |
| | | [JsonProperty("priority")] |
| | | public int Priority { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [JsonProperty("taskNo")] |
| | | public string TaskNo { get; set; } |
| | | } |
| | | #endregion |
| | | |
| | | #region 大洋立库接口接收返回参数 |
| | | |
| | | /// <summary> |
| | | /// 设备信息返回 |
| | | /// </summary> |
| | | 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; } |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 申请终点 |
| | | /// </summary> |
| | | public partial class ApplyDestModel |
| | |
| | | public string TaskNo { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 申请终点返回 |
| | | /// </summary> |
| | | public partial class ReseltApplyDestModel |
| | | { |
| | | [JsonProperty("loc")] |
| | | public string Loc { get; set; } |
| | | } |
| | | public partial class Empty |
| | | { |
| | | |
| | | } |
| | | |
| | | |
| | | #endregion |
| | | |
| | | |
| | | } |
| | | |
| | | /// <summary> |