using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("sys_terminal_control")] [Serializable] public class SysTerminalControl : BaseEntity { [Column("terminal_id")] [DisplayName(" ")] public int TerminalId { get; set; } [Column("unlock_pwd")] [DisplayName(" ")] public string UnlockPwd { get; set; } [Column("station_name")] [DisplayName(" ")] public string StationName { get; set; } [Column("station_ip")] [DisplayName(" ")] public string StationIp { get; set; } [Column("view_board_id")] [DisplayName(" ")] public int? ViewBoardId { get; set; } [Column("view_part_location")] [DisplayName(" ")] public string ViewPartLocation { get; set; } #region 扩展字段 [NotMapped] [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [NotMapped] [Column("model_name")] [DisplayName(" ")] public string ModelName { get; set; } [NotMapped] [Column("type_name")] [DisplayName(" ")] public string TypeName { get; set; } [NotMapped] [Column("tray_no")] [DisplayName(" ")] public string TrayNo { get; set; } [NotMapped] [Column("tray_loc")] [DisplayName(" ")] public string TrayLoc { get; set; } [NotMapped] [Column("cur_time")] [DisplayName(" ")] public string CurTime { get; set; } [NotMapped] [Column("cust_pdline")] [DisplayName(" ")] public string CustPdline { get; set; } [NotMapped] [Column("out_time")] [DisplayName(" ")] public string OutTime { get; set; } [NotMapped] [Column("shipping_time")] [DisplayName(" ")] public string ShippingTime { get; set; } [NotMapped] [Column("order_seq")] [DisplayName(" ")] public string OrderSeq { get; set; } #endregion } }