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.
29 lines
686 B
C#
29 lines
686 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.DAO
|
|
{
|
|
/// <summary>
|
|
/// RFID与SFC绑定信息
|
|
/// </summary>
|
|
[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; }
|
|
}
|
|
}
|