yidun送检功能

This commit is contained in:
2026-05-15 10:28:17 +08:00
parent 51d26aeee7
commit c8cc19e8e7
29 changed files with 5133 additions and 121 deletions

View File

@@ -0,0 +1,22 @@
package dataengine
// 送检状态常量
const (
// SourceTable 来源表标识
SourceTableTencentImage = "tencent_image"
SourceTableTencentVideo = "tencent_video"
// CheckStatus 送检状态
CheckStatusPending = "PENDING" // 待送检
CheckStatusSubmitting = "SUBMITTING" // 送检中
CheckStatusSuccess = "SUCCESS" // 送检成功
CheckStatusFailed = "FAILED" // 送检失败
CheckStatusCompleted = "COMPLETED" // 检测完成
)
// Suggestion 处置建议
const (
SuggestionPass = 0 // 通过
SuggestionReview = 1 // 嫌疑,需人工审核
SuggestionBlock = 2 // 不通过
)