using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// /// /// [SugarTable("tax_company")] public partial class TaxCompany { public TaxCompany(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:社会信用代码 /// Default: /// Nullable:True /// public string shxydm {get;set;} /// /// Desc:法人代表 /// Default: /// Nullable:True /// public string frdb {get;set;} /// /// Desc:法人身份证号码 /// Default: /// Nullable:True /// public string frsfzh {get;set;} /// /// Desc:联系方式 /// Default: /// Nullable:True /// public string lxfs {get;set;} /// /// Desc:行业 /// Default: /// Nullable:True /// public string hy {get;set;} /// /// Desc:经营状态 /// Default: /// Nullable:True /// public string jyzt {get;set;} /// /// Desc:用电户名 /// Default: /// Nullable:True /// public string ydhm {get;set;} /// /// Desc:用电户号 /// Default: /// Nullable:True /// public string ydhh {get;set;} /// /// Desc:电力供应方名称 /// Default: /// Nullable:True /// public string dgyf {get;set;} /// /// Desc:用热户名 /// Default: /// Nullable:True /// public string yrhm {get;set;} /// /// Desc:用热户号 /// Default: /// Nullable:True /// public string yrhh {get;set;} /// /// Desc:热力供应方名称 /// Default: /// Nullable:True /// public string rgyf {get;set;} /// /// Desc:用气户名 /// Default: /// Nullable:True /// public string yqhm {get;set;} /// /// Desc:用气户号 /// Default: /// Nullable:True /// public string yqhh {get;set;} /// /// Desc:燃气供应方名称 /// Default: /// Nullable:True /// public string qgyf {get;set;} /// /// Desc:用水户名 /// Default: /// Nullable:True /// public string yshm {get;set;} /// /// Desc:用水户号 /// Default: /// Nullable:True /// public string yshh {get;set;} /// /// Desc:用水供应方名称 /// Default: /// Nullable:True /// public string sgyf {get;set;} /// /// Desc:调查人 /// Default: /// Nullable:True /// public string dcr {get;set;} /// /// Desc:调查日期 /// Default: /// Nullable:True /// public DateTime? dcrq {get;set;} /// /// Desc:测量人 /// Default: /// Nullable:True /// public string clr {get;set;} /// /// Desc:测量日期 /// Default: /// Nullable:True /// public DateTime? clrq {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string bz {get;set;} /// /// Desc:固定资产 /// Default: /// Nullable:True /// public decimal? gdzc {get;set;} /// /// Desc:项目贡献产出 /// Default:NULL::numeric /// Nullable:True /// public decimal? xmgxcc {get;set;} /// /// Desc:测算财源 /// Default: /// Nullable:True /// public decimal? cscy {get;set;} /// /// Desc:固定投资总额 /// Default: /// Nullable:True /// public decimal? gdtzze {get;set;} /// /// Desc:是否规上企业 /// Default: /// Nullable:True /// public bool? sfgsqy {get;set;} /// /// Desc:使用人名称 /// Default: /// Nullable:True /// public string syrmc { get; set; } /// /// Desc:地籍区代码 地籍区代码 /// Default: /// Nullable:True /// public string djqdm { get; set; } /// /// Desc:地籍区名称 /// Default: /// Nullable:True /// public string djqmc { get; set; } /// /// Desc:地籍子区代码 /// Default: /// Nullable:True /// public string djzqdm { get; set; } /// /// Desc:地籍子区名称 /// Default: /// Nullable:True /// public string djzqmc { get; set; } } }