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