using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcoEduKtStudentQueryResponse.
///
public class AlipayEcoEduKtStudentQueryResponse : AopResponse
{
///
/// 学生姓名
///
[JsonProperty("child_name")]
public string ChildName { get; set; }
///
/// 班级名字
///
[JsonProperty("class_name")]
public string ClassName { get; set; }
///
/// 学校名称
///
[JsonProperty("school_name")]
public string SchoolName { get; set; }
///
/// 学生编号
///
[JsonProperty("student_code")]
public string StudentCode { get; set; }
///
/// 学生身份证
///
[JsonProperty("student_identify")]
public string StudentIdentify { get; set; }
///
/// 家长信息
///
[JsonProperty("users")]
public List Users { get; set; }
}
}