NewGaoKaoApi/PaymentSDK/AliPay/Domain/ArInvoiceReceiptOpenApiResp...

139 lines
3.8 KiB
C#
Raw Permalink 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;
namespace Aop.Api.Domain
{
/// <summary>
/// ArInvoiceReceiptOpenApiResponse Data Structure.
/// </summary>
[Serializable]
public class ArInvoiceReceiptOpenApiResponse : AopObject
{
/// <summary>
/// 合约号
/// </summary>
[XmlElement("arrangement_no")]
public string ArrangementNo { get; set; }
/// <summary>
/// 可开票单据主键ID
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 机构ID
/// </summary>
[XmlElement("inst_id")]
public string InstId { get; set; }
/// <summary>
/// 开票时间 格式yyyymm
/// </summary>
[XmlElement("inv_dt")]
public string InvDt { get; set; }
/// <summary>
/// 开票模式 01实收开票 02应收开票 03累计实收开票
/// </summary>
[XmlElement("inv_mode")]
public string InvMode { get; set; }
/// <summary>
/// 可开票金额
/// </summary>
[XmlElement("invoice_amt")]
public MultiCurrencyMoneyOpenApi InvoiceAmt { get; set; }
/// <summary>
/// 已开票金额
/// </summary>
[XmlElement("invoiced_amt")]
public MultiCurrencyMoneyOpenApi InvoicedAmt { get; set; }
/// <summary>
/// 结算ip_id
/// </summary>
[XmlElement("ip_id")]
public string IpId { get; set; }
/// <summary>
/// 结算对象ip_role_id
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 最后修改人
/// </summary>
[XmlElement("last_moder")]
public string LastModer { get; set; }
/// <summary>
/// 已关联发票金额
/// </summary>
[XmlElement("link_invoice_amt")]
public MultiCurrencyMoneyOpenApi LinkInvoiceAmt { get; set; }
/// <summary>
/// 外部单据号,对应开票记录的月账单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 可开票单据来源01主站02芝麻03金融云04微贷
/// </summary>
[XmlElement("out_biz_type")]
public string OutBizType { get; set; }
/// <summary>
/// 付款方式1资金5走量
/// </summary>
[XmlElement("pay_way")]
public string PayWay { get; set; }
/// <summary>
/// 产品码
/// </summary>
[XmlElement("prod_code")]
public string ProdCode { get; set; }
/// <summary>
/// 结算类型 01实时02预收03后收04周期性05按日汇总09延期结算
/// </summary>
[XmlElement("settle_type")]
public string SettleType { get; set; }
/// <summary>
/// 开票金额消耗状态01未开票02部分开票03已开票
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 税率
/// </summary>
[XmlElement("tax_rate")]
public long TaxRate { get; set; }
/// <summary>
/// 税收类型01增值税02营业税
/// </summary>
[XmlElement("tax_type")]
public string TaxType { get; set; }
/// <summary>
/// 租户ID
/// </summary>
[XmlElement("tnt_inst_id")]
public string TntInstId { get; set; }
/// <summary>
/// 类型1应收2返点
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}