using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_outsource_bom")] [Serializable] public class WmsOutsourceBom : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("item_part_no")] [DisplayName(" ")] public string ItemPartNo { get; set; } #region [NotMapped] [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [NotMapped] [Column("item_part_spec")] [DisplayName(" ")] public string ItemPartSpec { get; set; } #endregion } }