修正模型外键的数据类型为 uint

This commit is contained in:
GeekMaster
2025-05-05 17:27:55 +08:00
parent 7bc55f3ed1
commit 5e59b3a708
9 changed files with 30 additions and 31 deletions

View File

@@ -2,7 +2,7 @@ package vo
type VideoJob struct {
Id uint `json:"id"`
UserId int `json:"user_id"`
UserId uint `json:"user_id"`
Channel string `json:"channel"`
Type string `json:"type"`
TaskId string `json:"task_id"`