You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

64 lines
1.8 KiB

using System;
namespace Aborlen.Model
{
/// <summary>
/// 数据表实体类:LabelDetail
/// </summary>
[Serializable()]
public class LabelDetail :BasicEntity<LabelDetail>
{
//当前代码为系统自动生成
/// <summary>
/// Int32:
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public Int32 PlantNr {get;set;}
/// <summary>
/// String:
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public String LabelId {get;set;}
/// <summary>
/// Int32:
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public Int32 Pos {get;set;}
/// <summary>
/// String:
/// </summary>
public String VariableName {get;set;}
/// <summary>
/// String:
/// </summary>
public String VariableValue {get;set;}
/// <summary>
/// DateTime:
/// </summary>
public DateTime? LastModify {get;set;}
/// <summary>
/// String:
/// </summary>
public String LastUser {get;set;}
/// <summary>
/// DateTime:
/// </summary>
public DateTime? CreateTime {get;set;}
}
}