using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceEducateLocalfaceCompareSyncModel Data Structure. /// [Serializable] public class AlipayCommerceEducateLocalfaceCompareSyncModel : AopObject { /// /// 客户端BehaviourLog-> aesCypher 参数 /// [XmlElement("aes_cypher")] public string AesCypher { get; set; } /// /// 参照示例传入 /// [XmlElement("alg_ver")] public string AlgVer { get; set; } /// /// 客户端BehaviourLog->imageBlob参数 /// [XmlElement("auth_img")] public string AuthImg { get; set; } /// /// SCHOOL_PAYMENT: 校园刷脸支付 SCHOOL_ENTRANCE_GUARD:校园门禁 /// [XmlElement("biz_code")] public string BizCode { get; set; } /// /// 业务流水唯一ID,isv自定义,保证唯一性 /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 拓展参数 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 2D或者3D,默认2D /// [XmlElement("face_data_type")] public string FaceDataType { get; set; } /// /// 参数来源填写特征文件中对应的face_id 人脸本地1:N比对后的用户ID /// [XmlElement("fuid")] public string Fuid { get; set; } /// /// 必须是由支付宝业务方分配的英文简称(例如:yikeshixx),不能是中文 /// [XmlElement("isv_name")] public string IsvName { get; set; } /// /// 国家统一分配的学校社会信用代码(institution_id) /// [XmlElement("organize_id")] public string OrganizeId { get; set; } /// /// 图片质量分 /// [XmlElement("quality")] public string Quality { get; set; } /// /// 人脸坐标点 /// [XmlElement("rect")] public string Rect { get; set; } /// /// 人脸本地比对分 /// [XmlElement("score")] public string Score { get; set; } } }