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