using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechBlockchainFinanceRiskApplyModel Data Structure. /// [Serializable] public class AnttechBlockchainFinanceRiskApplyModel : AopObject { /// /// 因何种资产业务发起的贷前风控申请 /// [XmlElement("asset_type")] public string AssetType { get; set; } /// /// 请求的唯一性标识,用于幂等处理。 若不传,则使用风控参数作为幂等条件 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// JSON字符串,字段参见资产字段信息表,风控字段。 /// [XmlElement("risk_object")] public string RiskObject { get; set; } /// /// 风控类型,默认贷前风控 /// [XmlElement("risk_type")] public string RiskType { get; set; } } }