You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
780 B
C#
39 lines
780 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RFIDTest.entity
|
|
{
|
|
public class Send11HEntity
|
|
{
|
|
public byte[] TimeOut { get; set; }
|
|
}
|
|
|
|
public class ReciveResult11HEntity
|
|
{
|
|
public byte Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// 信号强度
|
|
/// </summary>
|
|
public byte RSSI { get; set; }
|
|
|
|
/// <summary>
|
|
/// 天线端口
|
|
/// </summary>
|
|
public byte Ant { get; set; }
|
|
|
|
/// <summary>
|
|
/// EPC区域 10h-20h
|
|
/// </summary>
|
|
public byte[] PC { get; set; }
|
|
|
|
/// <summary>
|
|
/// 读到的EPC内容
|
|
/// </summary>
|
|
public byte[] EPC { get; set; }
|
|
}
|
|
}
|