using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.Entity.DAO { /// /// RFID与SFC绑定信息 /// [SugarTable("Pro_BindInfo")] public class ProBindInfo { [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string id { get; set; } [SugarColumn(ColumnName = "rfid")] public string rfid { get; set; } [SugarColumn(ColumnName = "sfc")] public string sfc { get; set; } [SugarColumn(ColumnName = "bindTime")] public string bindTime { get; set; } } }