Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ZolozIdentificationCustomerEnrollCancelModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
676 B
C#

using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ZolozIdentificationCustomerEnrollCancelModel Data Structure.
/// </summary>
[Serializable]
public class ZolozIdentificationCustomerEnrollCancelModel : AopObject
{
/// <summary>
/// 商户请求的唯一标志,该标识作为对账的关键信息,商户要保证其唯一性
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 商户的用户id
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}