1
0
Fork 0
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.

55 lines
1.4 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.domain
{
/// <summary>
/// RFID配置表
///</summary>
[SugarTable("zx_rfid_reader_setting")]
public class ZxReaderSettingEntity
{
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 备 注:读写器IP
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "rfid_ip")]
public string RfidIp { get; set; } = string.Empty;
///// <summary>
///// 备 注:RFID编号
///// 默认值:
/////</summary>
//[SugarColumn(ColumnName = "rfid_epc")]
//public string RfidEpc { get; set; } = string.Empty;
/// <summary>
/// 备 注:工位编号
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "workstation_no")]
public string WorkstationNo { get; set; } = string.Empty;
///// <summary>
///// 备 注:是否连接成功
///// 默认值:
/////</summary>
//[SugarColumn(ColumnName = "is_connected")]
//public bool? IsConnected { get; set; }
}
}