Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/IdCardImg.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

31 lines
972 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}