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.

85 lines
2.0 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SLH.SSDMS.Model.DO
{
[SugarTable("base_RFIDInfo")]
public class Base_RFIDInfo
{
public Base_RFIDInfo()
{
}
public Base_RFIDInfo(string rfidCode, string lotNum, int orderFlag, int updateFlag, string firstTime, string uuid, int preDistance)
{
this.rfidCode = rfidCode;
this.lotNum = lotNum;
this.orderFlag = orderFlag;
this.updateFlag = updateFlag;
this.firstTime = firstTime;
this.uuid = uuid;
this.preDistance = preDistance;
}
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
/// <summary>
/// Desc:RFID
/// Default:
/// Nullable:True
/// </summary>
public string rfidCode { get; set; }
/// <summary>
/// Desc:卷号
/// Default:
/// Nullable:True
/// </summary>
public string lotNum { get; set; }
/// <summary>
/// Desc:正反转标识 0-正转、1-反转
/// Default:
/// Nullable:True
/// </summary>
public int orderFlag { get; set; }
/// /// <summary>
/// Desc:更换标识 0-否、1-是
/// Default:
/// Nullable:True
/// </summary>
public int updateFlag { get; set; }
/// <summary>
/// Desc:首次读取时间
/// Default:
/// Nullable:True
/// </summary>
public string firstTime { get; set; }
/// <summary>
/// UUID
/// </summary>
public string uuid { get; set; }
/// <summary>
/// 前距
/// </summary>
public int preDistance { get; set; }
}
}