using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.UpLoad
{
///
/// 读取记录
///
[SugarTable("pro_readrecord")]
public class ReadRecord
{
///
/// 主键标识
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
///
/// 设备编号
///
[SugarColumn(ColumnName = "machineId")]
public int machineId { get; set; }
///
/// 资源编号
///
[SugarColumn(ColumnName = "resource")]
public String resource { get; set; }
///
/// 设备编号
///
[SugarColumn(ColumnName = "equipId")]
public int equipId { get; set; }
///
/// 位置编号
///
[SugarColumn(ColumnName = "positionId")]
public int positionId { get; set; }
///
/// 天线号
///
[SugarColumn(ColumnName = "ant")]
public int ant { get; set; }
///
/// RFID
///
[SugarColumn(ColumnName = "rfidStr")]
public String rfidStr { get; set; }
///
/// 是否成功
///
[SugarColumn(ColumnName = "is_success")]
public int is_success { get; set; }
///
/// 记录时间
///
[SugarColumn(ColumnName = "readTime")]
public String recordTime { get; set; }
///
/// 记录标签强度次数
///
[SugarColumn(ColumnName = "count")]
public int Count { get; set; }
///
/// 记录标签信号强度
///
[SugarColumn(ColumnName = "rssi")]
public int RSSI { get; set; }
}
}