using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StudyAccountInfo Data Structure. /// [Serializable] public class StudyAccountInfo : AopObject { /// /// 校园卡ID /// [XmlElement("alipay_card_no")] public string AlipayCardNo { get; set; } /// /// 校园卡类型 /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 支付宝终身学习账户id /// [XmlElement("study_id")] public string StudyId { get; set; } } }