using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_out_bom")] [Serializable] public class GOutBom : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("requst_qty")] [DisplayName(" ")] public int RequstQty { get; set; } [Column("carton_qty")] [DisplayName(" ")] public int CartonQty { get; set; } [Column("snq_qty")] [DisplayName(" ")] public int SnqQty { get; set; } [Column("factory_id")] [DisplayName(" ")] public int FactoryId { get; set; } } }