2023-12-21 22:17:40 +08:00
|
|
|
|
package dbstruct
|
|
|
|
|
|
|
|
|
|
type ImageAudit struct {
|
|
|
|
|
Id *string `json:"id" bson:"_id"` // 图像审核表id
|
|
|
|
|
AuditedMedia *MediaComponent `json:"audited_media" bson:"audited_media"` // 待审核媒体内容(图像)
|
|
|
|
|
BatchId *string `json:"batch_id" bson:"batch_id"` // 批次号
|
|
|
|
|
Status *int64 `json:"status" bson:"status"` // 审核状态
|
|
|
|
|
PornSceneSuggestion *string `json:"porn_scene_suggestion" bson:"porn_scene_suggestion"` // 色情场景建议
|
|
|
|
|
PornSceneLabel *string `json:"porn_scene_label" bson:"porn_scene_label"` // 色情场景标签
|
|
|
|
|
PornSceneRate *float64 `json:"porn_scene_rate" bson:"porn_scene_rate"` // 色情场景标签相关度
|
|
|
|
|
TerrorismSceneSuggestion *string `json:"terrorism_scene_suggestion" bson:"terrorism_scene_suggestion"` // 暴恐场景建议
|
|
|
|
|
TerrorismSceneLabel *string `json:"terrorism_scene_label" bson:"terrorism_scene_label"` // 暴恐场景标签
|
|
|
|
|
TerrorismSceneRate *float64 `json:"terrorism_scene_rate" bson:"terrorism_scene_rate"` // 暴恐场景标签相关度
|
|
|
|
|
AdSceneSuggestion *string `json:"ad_scene_suggestion" bson:"ad_scene_suggestion"` // 广告场景建议
|
|
|
|
|
AdSceneLabel *string `json:"ad_scene_label" bson:"ad_scene_label"` // 广告场景标签
|
|
|
|
|
AdSceneRate *float64 `json:"ad_scene_rate" bson:"ad_scene_rate"` // 广告场景标签相关度
|
|
|
|
|
LiveSceneSuggestion *string `json:"live_scene_suggestion" bson:"live_scene_suggestion"` // 不良场景建议
|
|
|
|
|
LiveSceneLabel *string `json:"live_scene_label" bson:"live_scene_label"` // 不良场景标签
|
|
|
|
|
LiveSceneRate *float64 `json:"live_scene_rate" bson:"live_scene_rate"` // 不良场景标签相关度
|
|
|
|
|
LogoSceneSuggestion *string `json:"logo_scene_suggestion" bson:"logo_scene_suggestion"` // logo场景建议
|
|
|
|
|
LogoSceneLabel *string `json:"logo_scene_label" bson:"logo_scene_label"` // logo场景标签
|
|
|
|
|
LogoSceneRate *float64 `json:"logo_scene_rate" bson:"logo_scene_rate"` // logo场景标签相关度
|
|
|
|
|
Details *[]byte `json:"details" bson:"details"` // 详细信息,返回的json
|
|
|
|
|
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
|
|
|
|
}
|