yidun送检功能
This commit is contained in:
22
consts/dataengine/check_status.go
Normal file
22
consts/dataengine/check_status.go
Normal 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 // 不通过
|
||||
)
|
||||
Reference in New Issue
Block a user