忽略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,30 +0,0 @@
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// IdCardImg Data Structure.
/// </summary>
[Serializable]
public class IdCardImg : AopObject
{
/// <summary>
/// 证件类型营业执照businessLicense身份证IDCARD
/// </summary>
[XmlElement("cardtype")]
public string Cardtype { get; set; }
/// <summary>
/// 图片地址支持一个证件的多页照片同时传入key:页码value:图片地址。页码从1开始递增身份证人脸面为1国徽面为2。 图片地址若是oss地址的话将bucket的名称组装到path里
/// </summary>
[XmlElement("imgurls")]
public string Imgurls { get; set; }
/// <summary>
/// 图片地址类型SFS 或OSS
/// </summary>
[XmlElement("imgurltype")]
public string Imgurltype { get; set; }
}
}