using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// VulInfo Data Structure.
///
[Serializable]
public class VulInfo : AopObject
{
///
/// 漏洞附件下载链接
///
[XmlElement("attachment")]
public string Attachment { get; set; }
///
/// 漏洞所属业务
///
[XmlElement("business")]
public string Business { get; set; }
///
/// 漏洞安全币奖励
///
[XmlElement("coin")]
public long Coin { get; set; }
///
/// 漏洞所属公司
///
[XmlElement("company")]
public long Company { get; set; }
///
/// 确认漏洞等级
///
[XmlElement("confirm_level")]
public long ConfirmLevel { get; set; }
///
/// 漏洞确认时间
///
[XmlElement("confirm_time")]
public string ConfirmTime { get; set; }
///
/// 漏洞详情
///
[XmlElement("detail")]
public string Detail { get; set; }
///
/// 漏洞修复时间
///
[XmlElement("fix_time")]
public string FixTime { get; set; }
///
/// 用户上报等级
///
[XmlElement("level")]
public long Level { get; set; }
///
/// 白帽子提交漏洞时填写的手机号
///
[XmlElement("mobile_phone")]
public string MobilePhone { get; set; }
///
/// 漏洞名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 白帽子昵称
///
[XmlElement("nick")]
public string Nick { get; set; }
///
/// 漏洞被驳回原因
///
[XmlElement("reject_reason")]
public string RejectReason { get; set; }
///
/// 漏洞评分奖励
///
[XmlElement("score")]
public long Score { get; set; }
///
/// 漏洞状态
///
[XmlElement("status")]
public long Status { get; set; }
///
/// 漏洞提交时间
///
[XmlElement("submit_time")]
public string SubmitTime { get; set; }
///
/// 一级类型ID
///
[XmlElement("type_sub_first_id")]
public long TypeSubFirstId { get; set; }
///
/// 一级漏洞类型名称
///
[XmlElement("type_sub_first_name")]
public string TypeSubFirstName { get; set; }
///
/// 二级类型ID
///
[XmlElement("type_sub_second_id")]
public long TypeSubSecondId { get; set; }
///
/// 二级漏洞类型名称
///
[XmlElement("type_sub_second_name")]
public string TypeSubSecondName { get; set; }
///
/// 漏洞 URL
///
[XmlElement("url")]
public string Url { get; set; }
///
/// 漏洞id
///
[XmlElement("vul_id")]
public long VulId { get; set; }
}
}