using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_tray_detail")] [Serializable] public class GTrayDetail : BaseEntity { [Column("tray_id")] [DisplayName(" ")] public int TrayId { get; set; } [Column("tray_loc")] [DisplayName(" ")] public int TrayLoc { get; set; } [Column("place_part_location")] [DisplayName(" ")] public string PlacePartLocation { get; set; } #region 扩展字段 [NotMapped] [Column("tray_name")] [DisplayName(" ")] public string TrayName { get; set; } [NotMapped] [Column("tray_loc1")] [DisplayName(" ")] public string TrayLoc1 { get; set; } [NotMapped] [Column("place_part_location1")] [DisplayName(" ")] public string PlacePartLocation1 { get; set; } #endregion } }