15 lines
527 B
Go
15 lines
527 B
Go
package tianyuctrl
|
|
|
|
import "91porn-server/web/service/vidser"
|
|
|
|
type MediaAdd struct {
|
|
FileId []string `json:"fileId" bson:"fileId,required"` // 媒资库ID
|
|
}
|
|
|
|
type MediaAddResp struct {
|
|
SuccessCount int `json:"successCount"`
|
|
FailCount int `json:"failCount"`
|
|
SensitiveHits []vidser.SensitiveHit `json:"sensitiveHits"` // 命中敏感词被强制下架的记录
|
|
SensitiveTip string `json:"sensitiveTip,omitempty"` // 命中提示文案;无命中时为空
|
|
}
|