25 lines
717 B
C#
25 lines
717 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppInvoiceOrderQueryResponse.
|
|
/// </summary>
|
|
public class AlipayEbppInvoiceOrderQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 根据订单号发票查询要素信息
|
|
/// </summary>
|
|
[XmlElement("invoice_element_model")]
|
|
public InvoiceElementModel InvoiceElementModel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开票申请时传入订单号(支持主单号、子单号),不限是否为支付宝体内交易单号
|
|
/// </summary>
|
|
[XmlElement("order_no")]
|
|
public string OrderNo { get; set; }
|
|
}
|
|
}
|