NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceEducateAuthen...

37 lines
950 B
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>
/// AlipayCommerceEducateAuthenticateCampuscardDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceEducateAuthenticateCampuscardDeleteModel : AopObject
{
/// <summary>
/// 证件号
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 学生证件类型默认为1: 1 居民身份证
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 学校国标码
/// </summary>
[XmlElement("school_stdcode")]
public string SchoolStdcode { get; set; }
/// <summary>
/// 用户姓名
/// </summary>
[XmlElement("user_name")]
public string UserName { get; set; }
}
}