79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ZolozAuthenticationCustomerFacemanageDeleteModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class ZolozAuthenticationCustomerFacemanageDeleteModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 地域编码
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("areacode")]
|
|||
|
|
public string Areacode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 人脸产品能力
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("biz_type")]
|
|||
|
|
public string BizType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 业务量
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("bizscale")]
|
|||
|
|
public string Bizscale { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商户品牌
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("brandcode")]
|
|||
|
|
public string Brandcode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商户机具唯一编码,关键参数
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("devicenum")]
|
|||
|
|
public string Devicenum { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 拓展参数
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("extinfo")]
|
|||
|
|
public string Extinfo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 入库类型 IDCARD:身份证 ALIPAY_USER:支付宝用户id, ALIPAY_TEL:手机号入库 CUSTOMER:自定义
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("facetype")]
|
|||
|
|
public string Facetype { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 入库用户信息
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("faceval")]
|
|||
|
|
public string Faceval { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 分组
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("group")]
|
|||
|
|
public string Group { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 门店编码
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("storecode")]
|
|||
|
|
public string Storecode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 有效期天数,如7天、30天、365天
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlElement("validtimes")]
|
|||
|
|
public string Validtimes { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|