using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPayCodecHschoolDecodeUseResponse. /// public class AlipayPayCodecHschoolDecodeUseResponse : AopResponse { /// /// 学生短号 /// [XmlElement("feature_code")] public string FeatureCode { get; set; } /// /// 红码 : "red" 黄码 :"yellow" 绿码 : "green" 审核中 : "init" 未找到 : "notFound" /// [XmlElement("health_status")] public string HealthStatus { get; set; } /// /// 学校编号(外标) /// [XmlElement("school_std_code")] public string SchoolStdCode { get; set; } /// /// 学号 /// [XmlElement("student_no")] public string StudentNo { get; set; } } }