using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Model.ExcelModel { /// ///客户管理 /// [Serializable] public class Customer { [Column("customer_code")] [DisplayName("客户代码")] public string CustomerCode { get; set; } [Column("customer_name")] [DisplayName("客户名称")] public string CustomerName { get; set; } [Column("customer_tel")] [DisplayName("客户电话")] public string CustomerTel { get; set; } [Column("customer_addr")] [DisplayName("客户地址")] public string CustomerAddr { get; set; } } }