using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEcoEduKtBillingSendResponse. /// public class AlipayEcoEduKtBillingSendResponse : AopResponse { /// /// 支付宝-中小学-教育缴费的账单号 /// [JsonProperty("order_no")] public string OrderNo { get; set; } /// /// 支付宝-中小学-教育缴费生成的学生唯一编号 /// [JsonProperty("student_no")] public string StudentNo { get; set; } } }