using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceEducateAuthenticateCampuscardCreateModel Data Structure. /// [Serializable] public class AlipayCommerceEducateAuthenticateCampuscardCreateModel : AopObject { /// /// 校区 /// [XmlElement("campus")] public string Campus { get; set; } /// /// 自然人在学校唯一编号 /// [XmlElement("campus_no")] public string CampusNo { get; set; } /// /// 1学生卡,2教工卡,3临时卡,4其他 不传默认是学生卡 /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 证件号 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// 证件类型 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 毕业时间 /// [XmlElement("expire_at")] public string ExpireAt { get; set; } /// /// 扩展字段,json格式 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 性别 /// [XmlElement("gender")] public string Gender { get; set; } /// /// 学生/教职工在学校唯一短号,由isv分配 /// [XmlElement("isv_short_code")] public string IsvShortCode { get; set; } /// /// 组织信息,多个分组以;隔开:AA/BB/CC;A/B/C /// [XmlElement("organization")] public string Organization { get; set; } /// /// 学校名称 /// [XmlElement("school_name")] public string SchoolName { get; set; } /// /// 学校国标码 /// [XmlElement("school_stdcode")] public string SchoolStdcode { get; set; } /// /// 用户姓名 /// [XmlElement("user_name")] public string UserName { get; set; } } }