NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportEtcB...

37 lines
949 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>
/// AlipayCommerceTransportEtcBindModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportEtcBindModifyModel : AopObject
{
/// <summary>
/// 绑定申请协议号
/// </summary>
[XmlElement("bind_agreement_no")]
public string BindAgreementNo { get; set; }
/// <summary>
/// 用户办理ETC时预留的手机号
/// </summary>
[XmlElement("binded_mobile")]
public string BindedMobile { get; set; }
/// <summary>
/// 卡号,带省份前缀
/// </summary>
[XmlElement("card_no")]
public string CardNo { get; set; }
/// <summary>
/// OBUID设备号
/// </summary>
[XmlElement("device_no")]
public string DeviceNo { get; set; }
}
}