using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// StudentInfo Data Structure. /// [Serializable] public class StudentInfo : AopObject { /// /// 学校所在行政区域编码 /// [JsonProperty("city_no")] public string CityNo { get; set; } /// /// 班级 /// [JsonProperty("class_name")] public string ClassName { get; set; } /// /// 学校名称 /// [JsonProperty("college_name")] public string CollegeName { get; set; } /// /// 学校机构编号 /// [JsonProperty("college_no")] public string CollegeNo { get; set; } /// /// 学历 /// [JsonProperty("degree")] public string Degree { get; set; } /// /// 院系 /// [JsonProperty("departments")] public string Departments { get; set; } /// /// 入校时间 /// [JsonProperty("gmt_enrollment")] public string GmtEnrollment { get; set; } /// /// 毕业时间 /// [JsonProperty("gmt_graduation")] public string GmtGraduation { get; set; } /// /// 专业 /// [JsonProperty("major")] public string Major { get; set; } /// /// 学生证号 /// [JsonProperty("student_id")] public string StudentId { get; set; } } }