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.
22 lines
489 B
C#
22 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DNSD_DB.Entity
|
|
{
|
|
public class RFIDStatesEntity
|
|
{
|
|
/// <summary>
|
|
/// RFID值
|
|
/// </summary>
|
|
public string RFIDValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态指示 0未操作 1正在操作 2准备操作 3已完成 4超时报警
|
|
/// </summary>
|
|
public int RFIDState { get; set; } = 0;
|
|
}
|
|
}
|