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.
28 lines
638 B
C#
28 lines
638 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
{
|
|
|
|
[SugarTable("rfid_content")]
|
|
public class RFIDContent
|
|
{
|
|
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int ID { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "content")]
|
|
public string Content { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "deviceno")]
|
|
public int DeviceNo { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "readkind")]
|
|
public string ReadKind { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "logtime")]
|
|
public DateTime LogTime { get; set; }
|
|
|
|
}
|
|
|
|
} |