NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceInfoGetMod...

31 lines
802 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppInvoiceInfoGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceInfoGetModel : AopObject
{
/// <summary>
/// 发票代码
/// </summary>
[XmlElement("invoice_code")]
public string InvoiceCode { get; set; }
/// <summary>
/// 发票号码
/// </summary>
[XmlElement("invoice_no")]
public string InvoiceNo { get; set; }
/// <summary>
/// 用户id当用户发起发票查询时可以先通过用户授权获取当前访问用户的userId
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}