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