NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTaxOrderQuery...

19 lines
537 B
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>
/// AlipayOverseasTaxOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTaxOrderQueryModel : AopObject
{
/// <summary>
/// 退税机构业务流水号唯一由退税机构生成只能包含英字母、数字长度不能小于3且不能大于64
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
}
}