generated from wenjy/Sln.Iot
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.
32 lines
645 B
C#
32 lines
645 B
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; }
|
|
}
|
|
}
|