using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Iot.Repository.dao { /// /// 托盘绑定实体类 /// public class TrayRfidBinding { /// /// 主键 /// [PrimaryKey] public string GUID { get; set; } /// /// 托盘码 /// public string TrayCode { get; set; } /// /// 产品编码 /// public string ProductionCode { get; set; } /// /// RFID03流程时间 /// public string? Time1 { get; set; } /// /// RFID04流程时间1 /// public string? Time2 { get; set; } /// /// RFID04流程时间2 /// public string? Time3 { get; set; } /// /// RFID05流程时间 /// public string? Time4 { get; set; } } }