102 lines
2.8 KiB
C#
102 lines
2.8 KiB
C#
|
|
/*
|
|||
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|||
|
|
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
|||
|
|
*/
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using iMES.Entity.SystemModels;
|
|||
|
|
|
|||
|
|
namespace iMES.Entity.DomainModels
|
|||
|
|
{
|
|||
|
|
[Entity(TableCnName = "工序采集数据",TableName = "Base_ProcessList",DBServer = "SysDbContext")]
|
|||
|
|
public partial class Base_ProcessList:SysEntity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///工序采集数据主键ID
|
|||
|
|
/// </summary>
|
|||
|
|
[Key]
|
|||
|
|
[Display(Name ="工序采集数据主键ID")]
|
|||
|
|
[Column(TypeName="int")]
|
|||
|
|
[Required(AllowEmptyStrings=false)]
|
|||
|
|
public int ProcessList_Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///工序
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="工序")]
|
|||
|
|
[Column(TypeName="int")]
|
|||
|
|
[Required(AllowEmptyStrings=false)]
|
|||
|
|
public int Process_Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///类型
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="类型")]
|
|||
|
|
[MaxLength(200)]
|
|||
|
|
[Column(TypeName="nvarchar(200)")]
|
|||
|
|
[Editable(true)]
|
|||
|
|
[Required(AllowEmptyStrings=false)]
|
|||
|
|
public string DataPointType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="名称")]
|
|||
|
|
[MaxLength(200)]
|
|||
|
|
[Column(TypeName="nvarchar(200)")]
|
|||
|
|
[Editable(true)]
|
|||
|
|
[Required(AllowEmptyStrings=false)]
|
|||
|
|
public string DataPointName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///创建时间
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="创建时间")]
|
|||
|
|
[Column(TypeName="datetime")]
|
|||
|
|
public DateTime? CreateDate { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///创建人编号
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="创建人编号")]
|
|||
|
|
[Column(TypeName="int")]
|
|||
|
|
public int? CreateID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///创建人
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="创建人")]
|
|||
|
|
[MaxLength(200)]
|
|||
|
|
[Column(TypeName="nvarchar(200)")]
|
|||
|
|
public string Creator { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///修改人
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="修改人")]
|
|||
|
|
[MaxLength(200)]
|
|||
|
|
[Column(TypeName="nvarchar(200)")]
|
|||
|
|
public string Modifier { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///修改时间
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="修改时间")]
|
|||
|
|
[Column(TypeName="datetime")]
|
|||
|
|
public DateTime? ModifyDate { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///修改人编号
|
|||
|
|
/// </summary>
|
|||
|
|
[Display(Name ="修改人编号")]
|
|||
|
|
[Column(TypeName="int")]
|
|||
|
|
public int? ModifyID { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|