using SqlSugar; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; using System.Xml.Linq; namespace SlnMesnac.Model.domain { [SugarTable("LOGO_IDENTIFY"), TenantAttribute("AUCMA_MES")] public class LogoIdentify { /// /// 主键标识 /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true, IsIdentity = true,OracleSequenceName ="SEQ_LOGO_IDENTIFY")] public int Id { get; set; } /// /// 箱体码 /// [SugarColumn(ColumnName = "PRODUCT_CODE")] public string ProductCode { get; set; } /// /// 型号 /// [SugarColumn(ColumnName = "MATERIAL_TYPE")] public string MaterialType { get; set; } /// /// 成品名称 /// [SugarColumn(ColumnName = "MATERIAL_NAME")] public string MaterialName { get; set; } /// /// 是否需要检测;0不需要;1需要 /// [SugarColumn(ColumnName = "IS_CHECKED")] public int isChecked { get; set; } /// /// 检测结果,0-失败;1-成功 /// [SugarColumn(ColumnName = "RESULT")] public int Result { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName = "RECORD_TIME")] public DateTime RecordTime { get; set; } } }