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

139 lines
3.7 KiB
C#
Raw 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>
/// AlipayCommerceEducateAuthenticateCampuscardModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceEducateAuthenticateCampuscardModifyModel : AopObject
{
/// <summary>
/// 校区
/// </summary>
[XmlElement("campus")]
public string Campus { get; set; }
/// <summary>
/// 学工号
/// </summary>
[XmlElement("campus_no")]
public string CampusNo { get; set; }
/// <summary>
/// 一卡通卡号(实体卡)
/// </summary>
[XmlElement("card_no")]
public string CardNo { get; set; }
/// <summary>
/// 1有效2无效3挂失
/// </summary>
[XmlElement("card_status")]
public string CardStatus { get; set; }
/// <summary>
/// 1学生卡2教工卡3临时卡4其他
/// </summary>
[XmlElement("card_type")]
public string CardType { get; set; }
/// <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("chip_no")]
public string ChipNo { get; set; }
/// <summary>
/// 邮箱地址
/// </summary>
[XmlElement("email")]
public string Email { get; set; }
/// <summary>
/// 有效期,格式"yyyy-MM-dd HH:mm:ss"
/// </summary>
[XmlElement("expire_at")]
public string ExpireAt { get; set; }
/// <summary>
/// 扩展信息json格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 学生性别,0未知1男2女9未说明的性别
/// </summary>
[XmlElement("gender")]
public string Gender { get; set; }
/// <summary>
/// base64编码人脸照片
/// </summary>
[XmlElement("image_base_64")]
public string ImageBase64 { get; set; }
/// <summary>
/// 人脸采集时间,格式"yyyy-MM-dd HH:mm:ss"
/// </summary>
[XmlElement("image_date")]
public string ImageDate { get; set; }
/// <summary>
/// 学生/教职工在学校唯一短号由isv分配
/// </summary>
[XmlElement("isv_short_code")]
public string IsvShortCode { get; set; }
/// <summary>
/// 学生手机
/// </summary>
[XmlElement("mobile_no")]
public string MobileNo { get; set; }
/// <summary>
/// 学生/教职工姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 组织信息,多个分组以;隔开AA/BB/CC;A/B/C
/// </summary>
[XmlElement("organization")]
public string Organization { get; set; }
/// <summary>
/// 学校名称
/// </summary>
[XmlElement("school_name")]
public string SchoolName { get; set; }
/// <summary>
/// 学校标识码
/// </summary>
[XmlElement("school_stdcode")]
public string SchoolStdcode { get; set; }
/// <summary>
/// 学生/教职工在学校唯一短号,此字段废弃
/// </summary>
[XmlElement("short_code")]
public long ShortCode { get; set; }
}
}