2023-12-21 22:17:40 +08:00
|
|
|
package dbstruct
|
|
|
|
|
|
|
|
type TextAudit struct {
|
|
|
|
Id *string `json:"id" bson:"_id"` // 文字审核表id
|
|
|
|
AuditedText *string `json:"audited_text" bson:"audited_text"` // 待审核文字内容
|
|
|
|
BatchId *string `json:"batch_id" bson:"batch_id"` // 批次号
|
|
|
|
Status *int64 `json:"status" bson:"status"` // 审核状态
|
|
|
|
Suggestion *string `json:"suggestion" bson:"suggestion"` // 建议
|
|
|
|
Rate *float64 `json:"rate" bson:"rate"` // 相关度
|
|
|
|
Label *string `json:"label" bson:"label"` // 标签
|
|
|
|
SpamLabelDetails *[]string `json:"spam_label_details" bson:"spam_label_details"` // 垃圾内容详细信息
|
|
|
|
PoliticsLabelDetails *[]string `json:"politics_label_details" bson:"politics_label_details"` // 敏感内容详细信息
|
|
|
|
AbuseLabelDetails *[]string `json:"abuse_label_details" bson:"abuse_label_details"` // 辱骂内容详细信息
|
|
|
|
TerrorismLabelDetails *[]string `json:"terrorism_label_details" bson:"terrorism_label_details"` // 暴恐内容详细信息
|
|
|
|
PornLabelDetails *[]string `json:"porn_label_details" bson:"porn_label_details"` // 鉴黄内容详细信息
|
|
|
|
FloodLabelDetails *[]string `json:"flood_label_details" bson:"flood_label_details"` // 灌水内容详细信息
|
|
|
|
ContrabandLabelDetails *[]string `json:"contraband_label_details" bson:"contraband_label_details"` // 违禁内容详细信息
|
|
|
|
AdLabelDetails *[]string `json:"ad_label_details" bson:"ad_label_details"` // 广告内容详细信息
|
|
|
|
Remarks *string `json:"remarks" bson:"remarks"` // 备注
|
|
|
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
|
|
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
|
|
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
|
|
|
|
2024-04-11 21:51:46 +08:00
|
|
|
NotPassScenes []string //未通过场景
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|