using System; using System.Linq; using System.Text; using SqlSugar; namespace Sugar.Enties { /// /// /// [SugarTable("corps")] public partial class corps { public corps(){ } /// /// Desc:公司主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string pk_corp {get;set;} /// /// Desc:公司编码 /// Default: /// Nullable:True /// public string corpname {get;set;} /// /// Desc:上级公司 /// Default: /// Nullable:True /// public string fathercode {get;set;} /// /// Desc:公司简称 /// Default: /// Nullable:True /// public string unitshortname {get;set;} /// /// Desc:所有权份额 /// Default: /// Nullable:True /// public string ownersharerate {get;set;} /// /// Desc:是否控股 /// Default: /// Nullable:True /// public string holdflag {get;set;} /// /// Desc:所属行业 /// Default: /// Nullable:True /// public string industry {get;set;} /// /// Desc:经济类型 /// Default: /// Nullable:True /// public string ecotype {get;set;} /// /// Desc:法人代表 /// Default: /// Nullable:True /// public string legalbodycode {get;set;} /// /// Desc:纳税人登记号 /// Default: /// Nullable:True /// public string taxcode {get;set;} /// /// Desc:营业地址 /// Default: /// Nullable:True /// public string saleaddr {get;set;} /// /// Desc:通讯地址 /// Default: /// Nullable:True /// public string postaddr {get;set;} /// /// Desc:邮政编码 /// Default: /// Nullable:True /// public string zipcode {get;set;} /// /// Desc:联系电话1 /// Default: /// Nullable:True /// public string phone1 {get;set;} /// /// Desc:联系电话2 /// Default: /// Nullable:True /// public string phone2 {get;set;} /// /// Desc:传真 /// Default: /// Nullable:True /// public string fax1 {get;set;} /// /// Desc:联系人 /// Default: /// Nullable:True /// public string linkman1 {get;set;} /// /// Desc:公司成立日期 /// Default: /// Nullable:True /// public DateTime? createdate {get;set;} /// /// Desc:注册资本 /// Default: /// Nullable:True /// public decimal? regcapital {get;set;} /// /// Desc:法人身份证号 /// Default: /// Nullable:True /// public string idnumber {get;set;} /// /// Desc:电子邮件 /// Default: /// Nullable:True /// public string email1 {get;set;} /// /// Desc:公司网址 /// Default: /// Nullable:True /// public string url {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string memo {get;set;} /// /// Desc:时间戳 /// Default: /// Nullable:True /// public DateTime? ts {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string sgn {get;set;} } }