| #region << 版 本 注 释 >> | 
| /*---------------------------------------------------------------- | 
|  * 命名空间:WIDESEAWCS_Tasks.StackerCraneJob | 
|  * 创建者:胡童庆 | 
|  * 创建时间:2024/8/2 16:13:36 | 
|  * 版本:V1.0.0 | 
|  * 描述: | 
|  * | 
|  * ---------------------------------------------------------------- | 
|  * 修改人: | 
|  * 修改时间: | 
|  * 版本:V1.0.1 | 
|  * 修改说明: | 
|  *  | 
|  *----------------------------------------------------------------*/ | 
| #endregion << 版 本 注 释 >> | 
|   | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEAWCS_Model.Models; | 
| using WIDESEAWCS_QuartzJob.DeviceBase; | 
|   | 
| namespace WIDESEAWCS_Tasks.StackerCraneJob | 
| { | 
|     public class StackerCraneTaskCommand : DeviceCommand | 
|     { | 
|         #region <Public Menber> | 
|         /// <summary> | 
|         /// 任务号 | 
|         /// </summary> | 
|         public int TaskNum { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 作业类型 | 
|         /// </summary> | 
|         public short WorkType { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 托盘类型 | 
|         /// </summary> | 
|         public short TrayType { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 起始行 | 
|         /// </summary> | 
|         public short StartRow { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 起始列 | 
|         /// </summary> | 
|         public short StartColumn { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 起始层 | 
|         /// </summary> | 
|         public short StartLayer { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 目标行 | 
|         /// </summary> | 
|         public short EndRow { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 目标列 | 
|         /// </summary> | 
|         public short EndColumn { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 目标层 | 
|         /// </summary> | 
|         public short EndLayer { get; set; } | 
|   | 
|         /// <summary> | 
|         /// 托盘号 | 
|         /// </summary> | 
|         [DataLength(25)] | 
|         public string Barcode { get; set; } | 
|         #endregion <Public Menber> | 
|     } | 
| } |