Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
package aiimagetovideomod
import (
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
)
// AiImageToVideoInfo 移动端返回内容
type AiImageToVideoInfo struct {
ID primitive.ObjectID `json:"id"` // 文档id
UID uint64 `json:"uid"` // 用户ID
ImgUrl string `json:"imgUrl"` // 未处理的图片地址
NewImgUrl string `json:"newImgUrl"` // 处理后的图片地址
Status int `json:"status"` // 状态
Coin int64 `json:"coin"` // 图生视频金币个数
IsFreeTimes bool `json:"isFreeTimes"` // 是否使用免费次数
IsHide bool `json:"isHide"` // 是否被用户隐藏
Remark string `json:"remark"` // 备注
IsDelete bool `json:"isDelete"` // 是否删除
CreatedAt time.Time `json:"createdAt"` // 创建时间
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
}