using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySecurityProdFacepayUploadModel Data Structure. /// [Serializable] public class AlipaySecurityProdFacepayUploadModel : AopObject { /// /// 用户输入的邀请码 /// [XmlElement("check_code")] public string CheckCode { get; set; } /// /// Base64编码的人脸图片 /// [XmlElement("face_image")] public string FaceImage { get; set; } /// /// 商户门店编号 /// [XmlElement("store_id")] public string StoreId { get; set; } } }