using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.process { /// /// 字典表 /// [SugarTable("processmodel_dictionary")] public class ProcessmodelDictionary { /// /// 主键ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 唯一键 /// [SugarColumn(ColumnName = "unique_value")] public string UniqueValue { get; set; } /// /// 描述 /// [SugarColumn(ColumnName = "description")] public string Description { get; set; } } }