添加状态
This commit is contained in:
@@ -21,6 +21,11 @@ type Audio struct {
|
||||
ExpireTime int64 `orm:"expire_time" json:"expireTime" description:"过期时间戳"`
|
||||
FeelTags string `orm:"feel_tags" json:"feelTags" description:"情感标签数组JSON"`
|
||||
GenreTags string `orm:"genre_tags" json:"genreTags" description:"风格标签数组JSON"`
|
||||
|
||||
// 本地校验状态
|
||||
VerifyStatus string `orm:"verify_status" json:"verifyStatus" description:"校验状态(PENDING:待校验, VERIFIED:已校验, REJECTED:已拒绝)"`
|
||||
VerifiedAt string `orm:"verified_at" json:"verifiedAt" description:"校验时间"`
|
||||
VerifiedBy string `orm:"verified_by" json:"verifiedBy" description:"校验人"`
|
||||
}
|
||||
|
||||
// AudioCol 音乐素材表字段定义
|
||||
@@ -40,6 +45,9 @@ type AudioCol struct {
|
||||
ExpireTime string
|
||||
FeelTags string
|
||||
GenreTags string
|
||||
VerifyStatus string
|
||||
VerifiedAt string
|
||||
VerifiedBy string
|
||||
}
|
||||
|
||||
// AudioCols 音乐素材表字段常量
|
||||
@@ -59,4 +67,7 @@ var AudioCols = AudioCol{
|
||||
ExpireTime: "expire_time",
|
||||
FeelTags: "feel_tags",
|
||||
GenreTags: "genre_tags",
|
||||
VerifyStatus: "verify_status",
|
||||
VerifiedAt: "verified_at",
|
||||
VerifiedBy: "verified_by",
|
||||
}
|
||||
|
||||
@@ -40,6 +40,11 @@ type Image struct {
|
||||
AigcFlag string `orm:"aigc_flag" json:"aigcFlag" description:"AIGC标志"`
|
||||
MuseAigcVersion int `orm:"muse_aigc_version" json:"museAigcVersion" description:"Muse AIGC版本"`
|
||||
AigcType int `orm:"aigc_type" json:"aigcType" description:"AIGC类型"`
|
||||
|
||||
// 本地校验状态
|
||||
VerifyStatus string `orm:"verify_status" json:"verifyStatus" description:"校验状态(PENDING:待校验, VERIFIED:已校验, REJECTED:已拒绝)"`
|
||||
VerifiedAt string `orm:"verified_at" json:"verifiedAt" description:"校验时间"`
|
||||
VerifiedBy string `orm:"verified_by" json:"verifiedBy" description:"校验人"`
|
||||
}
|
||||
|
||||
// ImageCol 图片素材表字段定义
|
||||
@@ -77,6 +82,9 @@ type ImageCol struct {
|
||||
AigcFlag string
|
||||
MuseAigcVersion string
|
||||
AigcType string
|
||||
VerifyStatus string
|
||||
VerifiedAt string
|
||||
VerifiedBy string
|
||||
}
|
||||
|
||||
// ImageCols 图片素材表字段常量
|
||||
@@ -114,4 +122,7 @@ var ImageCols = ImageCol{
|
||||
AigcFlag: "aigc_flag",
|
||||
MuseAigcVersion: "muse_aigc_version",
|
||||
AigcType: "aigc_type",
|
||||
VerifyStatus: "verify_status",
|
||||
VerifiedAt: "verified_at",
|
||||
VerifiedBy: "verified_by",
|
||||
}
|
||||
|
||||
@@ -54,6 +54,11 @@ type Video struct {
|
||||
AigcSource string `orm:"aigc_source" json:"aigcSource" description:"AIGC来源"`
|
||||
AigcFlag string `orm:"aigc_flag" json:"aigcFlag" description:"AIGC标志"`
|
||||
MuseAigcVersion int `orm:"muse_aigc_version" json:"museAigcVersion" description:"Muse AIGC版本"`
|
||||
|
||||
// 本地校验状态
|
||||
VerifyStatus string `orm:"verify_status" json:"verifyStatus" description:"校验状态(PENDING:待校验, VERIFIED:已校验, REJECTED:已拒绝)"`
|
||||
VerifiedAt string `orm:"verified_at" json:"verifiedAt" description:"校验时间"`
|
||||
VerifiedBy string `orm:"verified_by" json:"verifiedBy" description:"校验人"`
|
||||
}
|
||||
|
||||
// VideoCol 视频素材表字段定义
|
||||
@@ -105,6 +110,9 @@ type VideoCol struct {
|
||||
AigcSource string
|
||||
AigcFlag string
|
||||
MuseAigcVersion string
|
||||
VerifyStatus string
|
||||
VerifiedAt string
|
||||
VerifiedBy string
|
||||
}
|
||||
|
||||
// VideoCols 视频素材表字段常量
|
||||
@@ -156,4 +164,7 @@ var VideoCols = VideoCol{
|
||||
AigcSource: "aigc_source",
|
||||
AigcFlag: "aigc_flag",
|
||||
MuseAigcVersion: "muse_aigc_version",
|
||||
VerifyStatus: "verify_status",
|
||||
VerifiedAt: "verified_at",
|
||||
VerifiedBy: "verified_by",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user