using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceTransportEtcBindModifyModel Data Structure. /// [Serializable] public class AlipayCommerceTransportEtcBindModifyModel : AopObject { /// /// 绑定申请协议号 /// [XmlElement("bind_agreement_no")] public string BindAgreementNo { get; set; } /// /// 用户办理ETC时预留的手机号 /// [XmlElement("binded_mobile")] public string BindedMobile { get; set; } /// /// 卡号,带省份前缀 /// [XmlElement("card_no")] public string CardNo { get; set; } /// /// OBUID,设备号 /// [XmlElement("device_no")] public string DeviceNo { get; set; } } }