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
{
///
/// RFID配置表
///
[SugarTable("zx_rfid_reader_setting")]
public class ZxReaderSettingEntity
{
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 备 注:读写器IP
/// 默认值:
///
[SugarColumn(ColumnName = "rfid_ip")]
public string RfidIp { get; set; } = string.Empty;
/////
///// 备 注:RFID编号
///// 默认值:
/////
//[SugarColumn(ColumnName = "rfid_epc")]
//public string RfidEpc { get; set; } = string.Empty;
///
/// 备 注:工位编号
/// 默认值:
///
[SugarColumn(ColumnName = "workstation_no")]
public string WorkstationNo { get; set; } = string.Empty;
/////
///// 备 注:是否连接成功
///// 默认值:
/////
//[SugarColumn(ColumnName = "is_connected")]
//public bool? IsConnected { get; set; }
}
}