147 lines
5.4 KiB
C#
147 lines
5.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayBossFncUserinvoiceinfoCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayBossFncUserinvoiceinfoCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 是否接受电子票 true:是,false:否
|
||
/// </summary>
|
||
[XmlElement("accept_electronic")]
|
||
public bool AcceptElectronic { get; set; }
|
||
|
||
/// <summary>
|
||
/// 公司注册地址,公司营业执照上登记的住址,一般纳税人必须填写,小规模纳税人无需填写
|
||
/// </summary>
|
||
[XmlElement("address")]
|
||
public string Address { get; set; }
|
||
|
||
/// <summary>
|
||
/// 开票资料pid寻址方式 true:pid寻址mid,优先以mid维度保存开票资料,若无mid则以pid维度保存开票资料 false:不寻址mid,以pid维度保存开票资料;非主站商户体系都是以pid(ipRoleId)维度保存开票资料,该值直接填为false
|
||
/// </summary>
|
||
[XmlElement("addressing")]
|
||
public bool Addressing { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否自动申请开票 true:是,false:否
|
||
/// </summary>
|
||
[XmlElement("auto")]
|
||
public bool Auto { get; set; }
|
||
|
||
/// <summary>
|
||
/// 银行账户,公司银行账号 一般纳税人必须填写,小规模纳税人无需填写
|
||
/// </summary>
|
||
[XmlElement("bank_account")]
|
||
public string BankAccount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 开户行,办理银行开户手续的营业网点 一般纳税人必须填写,小规模纳税人无需填写
|
||
/// </summary>
|
||
[XmlElement("bank_name")]
|
||
public string BankName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营业执照地址,营业执照上传oss上的地址
|
||
/// </summary>
|
||
[XmlElement("business_licence_url")]
|
||
public string BusinessLicenceUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否暂停开票,商户添加的开票资料就是不暂停开票,如果后续要暂停开票,只能去结算中台处理。
|
||
/// </summary>
|
||
[XmlElement("hold")]
|
||
public bool Hold { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户的pid(ipRoleId)
|
||
/// </summary>
|
||
[XmlElement("ip_role_id")]
|
||
public string IpRoleId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 银行开户许可证附件,银行开户许可证上传oss上的地址
|
||
/// </summary>
|
||
[XmlElement("open_account_permit_url")]
|
||
public string OpenAccountPermitUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 当前操作人
|
||
/// </summary>
|
||
[XmlElement("operator")]
|
||
public string Operator { get; set; }
|
||
|
||
/// <summary>
|
||
/// 当前操作人类型,01:商户 02:管理员(小二)
|
||
/// </summary>
|
||
[XmlElement("operator_type")]
|
||
public string OperatorType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 其它资质证明地址,其他资质证明附件上传oss上的地址
|
||
/// </summary>
|
||
[XmlElement("other_qualification_url")]
|
||
public string OtherQualificationUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部只允许添加商户开票资料,该值填写为false
|
||
/// </summary>
|
||
[XmlElement("ou")]
|
||
public bool Ou { get; set; }
|
||
|
||
/// <summary>
|
||
/// 纳税人识别号,税务登记证上的号码。一般纳税人必须填写,小规模纳税人如果是商户也必须填写,个人无需填写
|
||
/// </summary>
|
||
[XmlElement("tax_no")]
|
||
public string TaxNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 纳税人资格开始时间 (格式:时间戳) 一般纳税人必须填写,小规模纳税人无需填写
|
||
/// </summary>
|
||
[XmlElement("tax_payer_quali_valid")]
|
||
public string TaxPayerQualiValid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 纳税人资格种类,01:一般纳税人;02:小规模纳税人;03:国际商户
|
||
/// </summary>
|
||
[XmlElement("tax_payer_qualification")]
|
||
public string TaxPayerQualification { get; set; }
|
||
|
||
/// <summary>
|
||
/// 一般纳税人资格证书地址,一般纳税人资格证书上传oss上的地址
|
||
/// </summary>
|
||
[XmlElement("tax_qualification_url")]
|
||
public string TaxQualificationUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 税务登记证地址,税务登记证上传oss上的地址
|
||
/// </summary>
|
||
[XmlElement("tax_reg_cert_url")]
|
||
public string TaxRegCertUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 公司注册电话(手机号和座机均可) 一般纳税人必须填写,小规模纳税人无需填写
|
||
/// </summary>
|
||
[XmlElement("telephone")]
|
||
public string Telephone { get; set; }
|
||
|
||
/// <summary>
|
||
/// 发票抬头,票面信息上的抬头信息
|
||
/// </summary>
|
||
[XmlElement("title")]
|
||
public string Title { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收件人列表,若不修改此项可以不填 选择非电子票时,邮寄信息必填,且保证邮寄信息的ipRoleId和开票资料的ipRoleId相等
|
||
/// </summary>
|
||
[XmlArray("user_mail_info_order_list")]
|
||
[XmlArrayItem("user_mail_info_order")]
|
||
public List<UserMailInfoOrder> UserMailInfoOrderList { get; set; }
|
||
}
|
||
}
|