using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { [Table("Owner_info")] public class Owner_info { /// /// 主键ID /// public int ID { get; set; } /// /// 条件 /// public string Condition { get; set; } /// /// 公司全称 /// public string FullName { get; set; } /// /// 营业执照 /// public string CounterpartyCode { get; set; } /// /// 注册地址 /// public string RegisteredAddress { get; set; } /// /// 法人 /// public string LegalPerson { get; set; } /// /// 户名 /// public string BankAccount { get; set; } /// /// 开户行 /// public string Bank { get; set; } /// /// 账号 /// public string Card { get; set; } /// /// 大额行号 /// public string Payment { get; set; } /// /// 联系人 /// public string ContactName { get; set; } /// /// 联系地址 /// public string Address { get; set; } /// /// 邮件 /// public string Email { get; set; } /// /// 电话 /// public string PhoneNumber { get; set; } /// /// 传真 /// public string Fax { get; set; } } }