NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityRiskAmlAnalyz...

55 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySecurityRiskAmlAnalyzeSubmitModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityRiskAmlAnalyzeSubmitModel : AopObject
{
/// <summary>
/// 唯一事件码,区分事件
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 业务扩展字段将业务需要扫描的参数配置在此hash表的json字符串形式
/// </summary>
[XmlElement("extend_data")]
public string ExtendData { get; set; }
/// <summary>
/// 事件发生时间,日期的毫秒数
/// </summary>
[XmlElement("gmt_occur")]
public string GmtOccur { get; set; }
/// <summary>
/// 请求的唯一编号
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 租户编号
/// </summary>
[XmlElement("tenant_id")]
public string TenantId { get; set; }
/// <summary>
/// 站点ID
/// </summary>
[XmlElement("tnt_inst_id")]
public string TntInstId { get; set; }
/// <summary>
/// sofaid
/// </summary>
[XmlElement("trace_id")]
public string TraceId { get; set; }
}
}