using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 凯乐士任务状态上报 /// public class GALAXISUpdateTaskStatus { /// /// 任务编号 /// public string taskId { get; set; } /// /// 执行任务库位 /// public string siteCode { get; set; } /// /// 容器编号 /// public string rackNo { get; set; } /// /// 设备编号 /// public int vid { get; set; } /// /// 测量高度, /// 0:货物高度小于最矮传感器 ///1:货物高度大于最矮传感器小于最高传感器 ///2:货物高度大于最高传感器 /// public int height { get; set; } /// /// 请求时间戳 /// public string reportTime { get; set; } /// /// 任务状态

/// 0任务完成,

/// 1起点无货,

/// 2终点有货,

/// 3任务编号重复,

/// 4取货完成,

/// 5RCS接收任务操作数据库异常,

/// 6任务类型有误,

/// 7参数有误,

/// 8RCS未知异常,

/// 9正在执行或已执行完毕的任务不能取消,

/// 10开始执行任务,

/// 13任务废止,不再执行

///
public int taskStatus { get; set; } /// /// 请求结果描述 /// public string returnInfo { get; set; } } }