using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZolozAuthenticationFaceSearchQueryModel Data Structure. /// [Serializable] public class ZolozAuthenticationFaceSearchQueryModel : AopObject { /// /// 人脸图片采集后的加密字符串 /// [XmlElement("blob")] public string Blob { get; set; } /// /// 商户设备编码 /// [XmlElement("device_num")] public string DeviceNum { get; set; } /// /// 机具分组编码 /// [XmlElement("group")] public string Group { get; set; } /// /// zim唯一标识 /// [XmlElement("zim_id")] public string ZimId { get; set; } } }