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.

42 lines
914 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 ProdDataBinding
{
/// <summary>
/// 主键
/// </summary>
[PrimaryKey]
public string GUID { get; set; }
/// <summary>
/// 托盘码
/// </summary>
public string TrayCode { get; set; }
/// <summary>
/// 参数名称
/// </summary>
public string DataName { get; set; }
/// <summary>
/// 参数内容
/// </summary>
public string DataContent { get; set; }
/// <summary>
/// 参数类型bool, float, uint16, uint32, byte.......)
/// </summary>
public string DataType { get; set; }
}
}