using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Rfid.Entity
{
/// <summary>
/// 发送数据基础类
/// </summary>
public class BaseSendDataEntity
/// 指令编号
public byte Code { get; set; }
/// 数据
public byte[] Data { get; set; }
}