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_FORMULA"), TenantAttribute("AUCMA_MES")]
public class LogoFormula
{
///
/// 主键标识
///
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, IsIdentity = true, OracleSequenceName = "SEQ_LOGO_FORMULA")]
public int Id { get; set; }
///
/// 存储1-2-3-4这种发给海康的型号
///
[SugarColumn(ColumnName = "KEY")]
public int Key { get; set; }
///
/// 存储人工选择的特征-如白色冰柜大LOGO;黑色冰柜小LOGO
///
[SugarColumn(ColumnName = "VALUE")]
public string Value { get; set; }
}
}