| 123456789101112131415161718192021222324252627282930 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.Device.Galil{    public class GalilCommand    {        /// <summary>        /// 功能码        /// </summary>        public byte CommandCode { get; set; }        /// <summary>        /// 设置数据数组        /// </summary>        public byte[] Datas { get; set; }        /// <summary>        /// 设置数据        /// </summary>        public string SetData { get; set; }        /// <summary>        /// 接收的数据        /// </summary>        public GalilControllerData ControllerData { get; set; }    }}
 |