forked from wenjy/HighWayIot
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.
51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("zx_rfid_setting")]
|
|
public class Zx_rfid_setting
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:读写器IP
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "rfid_ip")]
|
|
public string RfidIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:RFID编号
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "rfid_epc")]
|
|
public string RfidEpc { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:工位编号
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "workstate_no")]
|
|
public int? WorkstateNo { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|