You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.1 KiB
C#

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