using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_customer_to_stock")] [Serializable] public class WmsCustomerToStock : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int ruid { get; set; } [Column("customer_part")] [DisplayName(" ")] public string CustomerPart { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [Column("part_id")] [DisplayName(" ")] public int? PartId { get; set; } [Column("part_spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [Column("Enabled")] [DisplayName(" ")] public string Enabled { get; set; } } }