NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserBillSimpleQueryMo...

25 lines
650 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>
/// AlipayUserBillSimpleQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserBillSimpleQueryModel : AopObject
{
/// <summary>
/// 28位或32位支付宝交易流水号
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 本方卡号对应用户userid即16位的2088开头的支付宝uid。
/// </summary>
[XmlElement("owner_card_no")]
public string OwnerCardNo { get; set; }
}
}