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 { /// /// /// [SugarTable("zx_rfid_setting")] public class Zx_rfid_setting { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:读写器IP /// 默认值: /// [SugarColumn(ColumnName = "rfid_ip")] public string RfidIp { get; set; } /// /// 备 注:RFID编号 /// 默认值: /// [SugarColumn(ColumnName = "rfid_epc")] public string RfidEpc { get; set; } /// /// 备 注:工位编号 /// 默认值: /// [SugarColumn(ColumnName = "workstate_no")] public int? WorkstateNo { get; set; } } }