using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.SysDto { public class CustomerDto { public int Id { get; set; } /// /// 客户号 /// public string CustomerNo { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 类型 0 销售客户/货主 1 供货商 /// public int? Type { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 联系人 /// public string LinkMan { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 银行卡号 /// public string BankAccount { get; set; } /// /// 信用等级 /// public string CreditRating { get; set; } /// /// 备注 /// public string Demo { get; set; } /// /// 创建日期 /// public DateTime CreateTime { get; set; } /// /// 更新日期 /// public DateTime? UpdateTime { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 更新人 /// public string UpdateUserName { get; set; } } }