generated from wenjy/SlnMesnac
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
930 B
C#
29 lines
930 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using SqlSugar;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
[SugarTable("ScanLog"), Tenant("mes")]
|
|
[DataContract(Name = "ScanLog ɨÃèÈÕÖ¾")]
|
|
public class ScanLogModel
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "create_time")]
|
|
public DateTime CreateTime { get; set; }
|
|
[SugarColumn(ColumnName = "data_type")]
|
|
public int DataType { get; set; }
|
|
[SugarColumn(ColumnName = "rfid")]
|
|
public string Rfid { get; set; }
|
|
[SugarColumn(ColumnName = "code")]
|
|
public string Code { get; set; }
|
|
[SugarColumn(ColumnName = "ocr")]
|
|
public string Ocr { get; set; }
|
|
[SugarColumn(ColumnName = "url")]
|
|
public string Url { get; set; }
|
|
}
|
|
} |