NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoEduKtParentQueryMo...

55 lines
2.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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