using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RiskRankInfoCode Data Structure.
///
[Serializable]
public class RiskRankInfoCode : AopObject
{
///
/// infocode
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 此infocode在总的得分中的贡献度
///
[XmlElement("contribution_degree")]
public long ContributionDegree { get; set; }
///
/// 风险描述
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 模型名称
///
[XmlElement("model_name")]
public string ModelName { get; set; }
}
}