using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoEduKtParentQueryModel Data Structure.
///
[Serializable]
public class AlipayEcoEduKtParentQueryModel : AopObject
{
///
/// 孩子或学生姓名
///
[XmlElement("child_name")]
public string ChildName { get; set; }
///
/// Isv的支付宝pid
///
[XmlElement("partner_id")]
public string PartnerId { get; set; }
///
/// 学校编码,录入学校接口返回的school_no参数
///
[XmlElement("school_no")]
public string SchoolNo { get; set; }
///
/// 学校支付宝pid
///
[XmlElement("school_pid")]
public string SchoolPid { get; set; }
///
/// 学生的学号,一个学校的学号必须是唯一。结果返回用户是否通过此学号添加此学生的缴费账户。user_mobile、student_code 、student_identify 必须并且只能填一项。
///
[XmlElement("student_code")]
public string StudentCode { get; set; }
///
/// 学生的身份证号,使用身份证规则验证。结果返回用户是否通过此身份证号添加此学生的缴费账户。user_mobile、student_code 、student_identify 必须并且只能填一项。
///
[XmlElement("student_identify")]
public string StudentIdentify { get; set; }
///
/// 用户手机号,发账单时填写users数组中的一个手机号。结果返回用户是否通过此手机号添加此学生的缴费账户。user_mobile、student_code 、student_identify 必须并且只能填一项。
///
[XmlElement("user_mobile")]
public string UserMobile { get; set; }
}
}