初始提交
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// StudentInfo Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class StudentInfo : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 学校所在行政区域编码
|
||||
/// </summary>
|
||||
[JsonProperty("city_no")]
|
||||
public string CityNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 班级
|
||||
/// </summary>
|
||||
[JsonProperty("class_name")]
|
||||
public string ClassName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学校名称
|
||||
/// </summary>
|
||||
[JsonProperty("college_name")]
|
||||
public string CollegeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学校机构编号
|
||||
/// </summary>
|
||||
[JsonProperty("college_no")]
|
||||
public string CollegeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学历
|
||||
/// </summary>
|
||||
[JsonProperty("degree")]
|
||||
public string Degree { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 院系
|
||||
/// </summary>
|
||||
[JsonProperty("departments")]
|
||||
public string Departments { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入校时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_enrollment")]
|
||||
public string GmtEnrollment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 毕业时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_graduation")]
|
||||
public string GmtGraduation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 专业
|
||||
/// </summary>
|
||||
[JsonProperty("major")]
|
||||
public string Major { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 学生证号
|
||||
/// </summary>
|
||||
[JsonProperty("student_id")]
|
||||
public string StudentId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user