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

84 lines
2.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[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
}
}