75 lines
1.9 KiB
C#
75 lines
1.9 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// SpiDetectionDetail Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SpiDetectionDetail : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 检测结果码
|
|
/// </summary>
|
|
[XmlElement("code")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测内容
|
|
/// </summary>
|
|
[XmlElement("content")]
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测外部任务编号
|
|
/// </summary>
|
|
[XmlElement("data_id")]
|
|
public string DataId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测细节,检测内容可能涉及多个场景
|
|
/// </summary>
|
|
[XmlArray("details")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> Details { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测结果分类
|
|
/// </summary>
|
|
[XmlElement("label")]
|
|
public string Label { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测结果信息
|
|
/// </summary>
|
|
[XmlElement("msg")]
|
|
public string Msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测准确率
|
|
/// </summary>
|
|
[XmlElement("rate")]
|
|
public string Rate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测场景
|
|
/// </summary>
|
|
[XmlElement("scene")]
|
|
public string Scene { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测建议 pass-文本正常 review-需要人工审核 block-文本违规,可以直接删除或者做限制处理
|
|
/// </summary>
|
|
[XmlElement("suggestion")]
|
|
public string Suggestion { get; set; }
|
|
|
|
/// <summary>
|
|
/// 检测内部任务编号
|
|
/// </summary>
|
|
[XmlElement("task_id")]
|
|
public string TaskId { get; set; }
|
|
}
|
|
}
|