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.

37 lines
974 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Xml.Linq;
namespace SlnMesnac.Model.domain
{
/// <summary>
/// 海康配方
/// </summary>
[SugarTable("LOGO_FORMULA"), TenantAttribute("AUCMA_MES")]
public class LogoFormula
{
/// <summary>
/// 主键标识
///</summary>
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, IsIdentity = true, OracleSequenceName = "SEQ_LOGO_FORMULA")]
public int Id { get; set; }
/// <summary>
/// 存储1-2-3-4这种发给海康的型号
/// </summary>
[SugarColumn(ColumnName = "KEY")]
public int Key { get; set; }
/// <summary>
/// 存储人工选择的特征-如白色冰柜大LOGO;黑色冰柜小LOGO
/// </summary>
[SugarColumn(ColumnName = "VALUE")]
public string Value { get; set; }
}
}