25 lines
574 B
C#
25 lines
574 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MerchantScreenHit Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MerchantScreenHit : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 送检的实体类型,如CEO,控股人,等
|
||
/// </summary>
|
||
[XmlElement("input_type")]
|
||
public string InputType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 命中详情
|
||
/// </summary>
|
||
[XmlElement("risk_detail")]
|
||
public string RiskDetail { get; set; }
|
||
}
|
||
}
|