忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,84 +0,0 @@
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CertFields Data Structure.
/// </summary>
[Serializable]
public class CertFields : AopObject
{
/// <summary>
/// 地址
/// </summary>
[XmlElement("address")]
public string Address { get; set; }
/// <summary>
/// 生日
/// </summary>
[XmlElement("birth")]
public string Birth { get; set; }
/// <summary>
/// 证件号码
/// </summary>
[XmlElement("certno")]
public string Certno { get; set; }
/// <summary>
/// 有效期
/// </summary>
[XmlElement("expires")]
public string Expires { get; set; }
/// <summary>
/// 有效期结束日期
/// </summary>
[XmlElement("expiresend")]
public string Expiresend { get; set; }
/// <summary>
/// 有效期开始时间
/// </summary>
[XmlElement("expiresstart")]
public string Expiresstart { get; set; }
/// <summary>
/// 签发机关
/// </summary>
[XmlElement("issuingauthority")]
public string Issuingauthority { get; set; }
/// <summary>
/// 名字
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 编号
/// </summary>
[XmlElement("number")]
public string Number { get; set; }
/// <summary>
/// 民族
/// </summary>
[XmlElement("race")]
public string Race { get; set; }
/// <summary>
/// 换证次数
/// </summary>
[XmlElement("renewalnum")]
public string Renewalnum { get; set; }
/// <summary>
/// 性别
/// </summary>
[XmlElement("sex")]
public string Sex { get; set; }
}
}