using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("sys_terminal")] [Serializable] public class SysTerminal : BaseEntity { [Column("terminal_id")] [DisplayName(" ")] public int TerminalId { get; set; } [Column("terminal_name")] [DisplayName(" ")] public string TerminalName { get; set; } [Column("stage_id")] [DisplayName(" ")] public int StageId { get; set; } [Column("process_id")] [DisplayName(" ")] public int ProcessId { get; set; } [Column("pdline_id")] [DisplayName(" ")] public int PdlineId { get; set; } [Column("tbls_server_id")] [DisplayName(" ")] public int TblsServerId { get; set; } [Column("tbls_control")] [DisplayName(" ")] public string TblsControl { get; set; } #region 扩展字段 [NotMapped] [Column("id")] [DisplayName(" ")] public string Id { get; set; } [NotMapped] [Column("name")] [DisplayName(" ")] public string Name { get; set; } [NotMapped] [Column("parentId")] [DisplayName(" ")] public string ParentId { get; set; } [NotMapped] [Column("noR")] [DisplayName(" ")] public string NoR { get; set; } [NotMapped] [Column("stage_name")] [DisplayName(" ")] public string StageName { get; set; } [NotMapped] [Column("process_name")] [DisplayName(" ")] public string ProcessName { get; set; } [NotMapped] [Column("pdline_name")] [DisplayName(" ")] public string PdlineName { get; set; } [NotMapped] [Column("factory_name")] [DisplayName(" ")] public string FactoryName { get; set; } #endregion } }