NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayBossFncInvoiceApplyMo...

63 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayBossFncInvoiceApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBossFncInvoiceApplyModel : AopObject
{
/// <summary>
/// 调用方身份识别标记(应用名称) 与业务单据号联合唯一
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 业务单据号,业务流水号
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 开票总金额开票金额不能为空开票金额不能小于等于0
/// </summary>
[XmlElement("invoice_amt")]
public MultiCurrencyMoneyOpenApi InvoiceAmt { get; set; }
/// <summary>
/// 申请开票类型01专票02普票
/// </summary>
[XmlElement("invoice_type")]
public string InvoiceType { get; set; }
/// <summary>
/// 备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 需开票的应收月账单号
/// </summary>
[XmlArray("mthtly_bill_nos")]
[XmlArrayItem("string")]
public List<string> MthtlyBillNos { get; set; }
/// <summary>
/// 申请人的uid号
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 01主站02芝麻03金融云
/// </summary>
[XmlElement("out_biz_type")]
public string OutBizType { get; set; }
}
}