using System.Text.Json.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AlipayCommerceEducateAuthenticateCampuscardModifyModel Data Structure.
///
public class AlipayCommerceEducateAuthenticateCampuscardModifyModel : AlipayObject
{
///
/// 校区
///
[JsonPropertyName("campus")]
public string Campus { get; set; }
///
/// 学工号
///
[JsonPropertyName("campus_no")]
public string CampusNo { get; set; }
///
/// 一卡通卡号(实体卡)
///
[JsonPropertyName("card_no")]
public string CardNo { get; set; }
///
/// 1有效,2无效,3挂失
///
[JsonPropertyName("card_status")]
public string CardStatus { get; set; }
///
/// 1学生卡,2教工卡,3临时卡,4其他
///
[JsonPropertyName("card_type")]
public string CardType { get; set; }
///
/// 学生证件号
///
[JsonPropertyName("cert_no")]
public string CertNo { get; set; }
///
/// 学生证件类型,默认为1: 1 居民身份证
///
[JsonPropertyName("cert_type")]
public string CertType { get; set; }
///
/// 一卡通芯片号
///
[JsonPropertyName("chip_no")]
public string ChipNo { get; set; }
///
/// 邮箱地址
///
[JsonPropertyName("email")]
public string Email { get; set; }
///
/// 有效期,格式"yyyy-MM-dd HH:mm:ss"
///
[JsonPropertyName("expire_at")]
public string ExpireAt { get; set; }
///
/// 扩展信息,json格式
///
[JsonPropertyName("ext_info")]
public string ExtInfo { get; set; }
///
/// 学生性别,0未知,1男,2女,9未说明的性别
///
[JsonPropertyName("gender")]
public string Gender { get; set; }
///
/// base64编码人脸照片
///
[JsonPropertyName("image_base_64")]
public string ImageBase64 { get; set; }
///
/// 人脸采集时间,格式"yyyy-MM-dd HH:mm:ss"
///
[JsonPropertyName("image_date")]
public string ImageDate { get; set; }
///
/// 学生/教职工在学校唯一短号,由isv分配
///
[JsonPropertyName("isv_short_code")]
public string IsvShortCode { get; set; }
///
/// 学生手机
///
[JsonPropertyName("mobile_no")]
public string MobileNo { get; set; }
///
/// 学生/教职工姓名
///
[JsonPropertyName("name")]
public string Name { get; set; }
///
/// 组织信息,多个分组以;隔开:AA/BB/CC;A/B/C
///
[JsonPropertyName("organization")]
public string Organization { get; set; }
///
/// 学校名称
///
[JsonPropertyName("school_name")]
public string SchoolName { get; set; }
///
/// 学校标识码
///
[JsonPropertyName("school_stdcode")]
public string SchoolStdcode { get; set; }
///
/// 学生/教职工在学校唯一短号,此字段废弃
///
[JsonPropertyName("short_code")]
public long ShortCode { get; set; }
}
}