using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// UserInvoiceInfoOpenApiResponse Data Structure. /// [Serializable] public class UserInvoiceInfoOpenApiResponse : AopObject { /// /// (AR开票使用)是否接受电子票 true:是,false:否 /// [XmlElement("accept_electronic")] public bool AcceptElectronic { get; set; } /// /// 公司注册地址 /// [XmlElement("address")] public string Address { get; set; } /// /// (AR开票使用)是否自动申请开票 true:是,false:否 /// [XmlElement("auto")] public bool Auto { get; set; } /// /// 银行账户 /// [XmlElement("bank_account")] public string BankAccount { get; set; } /// /// 开户行 /// [XmlElement("bank_name")] public string BankName { get; set; } /// /// 营业执照地址 /// [XmlElement("business_licence_url")] public string BusinessLicenceUrl { get; set; } /// /// 资料创建人 /// [XmlElement("creator")] public string Creator { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// (AR开票使用)是否暂停开票 true:暂停开票,false:可开票 /// [XmlElement("hold")] public bool Hold { get; set; } /// /// 开票资料ID /// [XmlElement("id")] public string Id { get; set; } /// /// 商户PID, type=01时表示OU用户,填充的是InstId机构代码,例如Z50, type=02时表示商户MID, type=03时表示商户PID /// [XmlElement("ip_id")] public string IpId { get; set; } /// /// 最后修改人 /// [XmlElement("last_modifier")] public string LastModifier { get; set; } /// /// 银行开户许可证地址 /// [XmlElement("open_account_permit_url")] public string OpenAccountPermitUrl { get; set; } /// /// 其它资质证明地址 /// [XmlElement("other_qualification_url")] public string OtherQualificationUrl { get; set; } /// /// 资料状态,01:待审,02:已审(有效), 03:已作废 /// [XmlElement("status")] public string Status { get; set; } /// /// 上一次任务执行时间(针对自动开票场景),格式:YYYYMMDD /// [XmlElement("task_date")] public string TaskDate { get; set; } /// /// 纳税人识别号(购方税号) /// [XmlElement("tax_no")] public string TaxNo { get; set; } /// /// 纳税人开票资格种类 01:一般纳税人,02:小规模纳税人 /// [XmlElement("tax_payer_qualification")] public string TaxPayerQualification { get; set; } /// /// 一般纳税人资格证书地址 /// [XmlElement("tax_qualification_url")] public string TaxQualificationUrl { get; set; } /// /// 税务登记证地址 /// [XmlElement("tax_reg_cert_url")] public string TaxRegCertUrl { get; set; } /// /// 纳税人资格开始时间 (时间戳) /// [XmlElement("taxpayer_quali_valid")] public string TaxpayerQualiValid { get; set; } /// /// 公司注册电话 /// [XmlElement("telephone")] public string Telephone { get; set; } /// /// 发票抬头 /// [XmlElement("title")] public string Title { get; set; } /// /// 租户ID /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } /// /// 开票资料用户类型 01:OU,02:商户,03:C用户 /// [XmlElement("type")] public string Type { get; set; } /// /// 收件人地址列表 /// [XmlArray("user_mail_info_list")] [XmlArrayItem("user_mail_info_v_o")] public List UserMailInfoList { get; set; } } }