using System; using System.Runtime.Serialization; using SqlSugar; namespace SlnMesnac.Model.domain { [SugarTable("ScanLog"), Tenant("mes")] [DataContract(Name = "ScanLog ɨÃèÈÕÖ¾")] public class ScanLog { /// /// /// [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; } } }