using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_product_deduct_log")] [Serializable] public class WmsProductDeductLog : BaseEntity { [Column("ruid")] [DisplayName(" ")] public long Ruid { get; set; } [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("part_id")] [DisplayName(" ")] public int? PartId { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("unit")] [DisplayName(" ")] public string Unit { get; set; } [Column("qty")] [DisplayName(" ")] public decimal? Qty { get; set; } [Column("item_part_id")] [DisplayName(" ")] public int? ItemPartId { get; set; } [Column("item_part_no")] [DisplayName(" ")] public string ItemPartNo { get; set; } [Column("item_unit")] [DisplayName(" ")] public string ItemUnit { get; set; } [Column("item_qty")] [DisplayName(" ")] public decimal? ItemQty { get; set; } [Column("pdline_code")] [DisplayName(" ")] public string PdlineCode { get; set; } [Column("bom_id")] [DisplayName(" ")] public long? BomId { get; set; } #region 扩展字段 [Column("part_Spec")] [DisplayName(" ")] public string PartSpec { get; set; } [Column("part_Spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [Column("item_part_Spec")] [DisplayName(" ")] public string ItemPartSpec { get; set; } [Column("item_part_Spec2")] [DisplayName(" ")] public string ItemPartSpec2 { get; set; } #endregion } }