using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_customer_to_supplier")] [Serializable] public class WmsCustomerToSupplier : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int ruid { get; set; } [Column("customer_no")] [DisplayName(" ")] public string CustomerNo { get; set; } [Column("hz_customer_no")] [DisplayName(" ")] public string HzCustomerNo { get; set; } [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [Column("hz_customer_id")] [DisplayName(" ")] public int? HzCustomerId { get; set; } [Column("part_spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [Column("Enabled")] [DisplayName(" ")] public string Enabled { get; set; } } }