using SqlSugar; using System; namespace HighWayIot.Repository.domain { [SugarTable("rfid_state")] public class RFIDState { [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } [SugarColumn(ColumnName = "ip")] public string IP { get; set; } [SugarColumn(ColumnName = "logtime")] public DateTime LogTime { get; set; } } }