using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// VerifyInfoVO Data Structure. /// [Serializable] public class VerifyInfoVO : AopObject { /// /// 公司地址 /// [XmlElement("business_address")] public string BusinessAddress { get; set; } /// /// 公司名称 /// [XmlElement("company_name")] public string CompanyName { get; set; } /// /// 曾用名(目前为null) /// [XmlElement("ever_org_name")] public string EverOrgName { get; set; } /// /// 国民经济行业 /// [XmlElement("industry_name")] public string IndustryName { get; set; } /// /// 法人信息 /// [XmlElement("legal_representative")] public LegalRepresentativeVO LegalRepresentative { get; set; } /// /// 当地税号 /// [XmlElement("local_tax_no")] public string LocalTaxNo { get; set; } /// /// 注销日期 /// [XmlElement("logoff_date")] public string LogoffDate { get; set; } /// /// 主要管理人员信息 /// [XmlArray("managers")] [XmlArrayItem("manager_v_o")] public List Managers { get; set; } /// /// 一般经营项目 /// [XmlElement("norm_opr_project")] public string NormOprProject { get; set; } /// /// 经营状态 /// [XmlElement("opr_status")] public string OprStatus { get; set; } /// /// 经营期限结束时间 /// [XmlElement("oprt_end_date")] public string OprtEndDate { get; set; } /// /// 经营期限起始时间 /// [XmlElement("oprt_start_date")] public string OprtStartDate { get; set; } /// /// 实缴资金(万) /// [XmlElement("org_actual_cptl")] public string OrgActualCptl { get; set; } /// /// 注册地址 /// [XmlElement("org_reg_addr")] public string OrgRegAddr { get; set; } /// /// 注册资金(万) /// [XmlElement("org_reg_cptl")] public string OrgRegCptl { get; set; } /// /// 注册币种 /// [XmlElement("org_reg_cptl_curcy")] public string OrgRegCptlCurcy { get; set; } /// /// 经营范围 /// [XmlElement("org_reg_opr_scope")] public string OrgRegOprScope { get; set; } /// /// 企业类型 /// [XmlElement("org_type")] public string OrgType { get; set; } /// /// 网站列表 /// [XmlElement("org_website")] public string OrgWebsite { get; set; } /// /// 许可经营项目 /// [XmlElement("permit_opr_project")] public string PermitOprProject { get; set; } /// /// 注册国家 /// [XmlElement("registration_country")] public string RegistrationCountry { get; set; } /// /// 注册日期 /// [XmlElement("registration_date")] public string RegistrationDate { get; set; } /// /// 工商注册号 /// [XmlElement("registration_no")] public string RegistrationNo { get; set; } /// /// 吊销日期 /// [XmlElement("revoke_date")] public string RevokeDate { get; set; } /// /// 股东信息 /// [XmlArray("stock_holders")] [XmlArrayItem("stock_holder_v_o")] public List StockHolders { get; set; } /// /// 个人UBO信息 /// [XmlArray("ubos")] [XmlArrayItem("ubo_v_o")] public List Ubos { get; set; } /// /// 标识码 /// [XmlElement("uc_code")] public string UcCode { get; set; } } }