Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoEduKtStudentQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoEduKtStudentQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoEduKtStudentQueryModel : AopObject
{
/// <summary>
/// 已经签约教育缴费的isv的支付宝PID
/// </summary>
[JsonProperty("isv_pid")]
public string IsvPid { get; set; }
/// <summary>
/// 学校编号调用alipay.eco.edu.kt.schoolinfo.modify接口录入学校信息时接口返回的编号
/// </summary>
[JsonProperty("school_no")]
public string SchoolNo { get; set; }
/// <summary>
/// 学校用来签约支付宝教育缴费的支付宝PID
/// </summary>
[JsonProperty("school_pid")]
public string SchoolPid { get; set; }
/// <summary>
/// 通过alipay.eco.edu.kt.billing.send发送教育缴费账单时支付宝返回这个student_no,如果支付宝系统中还没有这个学生,则会根据学生的属性,创建一个全局唯一的学生缴费账号并返回。
/// </summary>
[JsonProperty("student_no")]
public string StudentNo { get; set; }
}
}