From abe34505b3a69ba5fb026ae34e1e1ff31fdf6b61 Mon Sep 17 00:00:00 2001 From: cjy Date: Fri, 17 Oct 2025 16:53:42 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E4=BF=AE=E5=A4=8D=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/model/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/model/task.go b/internal/model/task.go index 6c1fc7b..2f86669 100644 --- a/internal/model/task.go +++ b/internal/model/task.go @@ -178,7 +178,7 @@ func (t *TaskBalance) TableName() string { // 任务日志表 type TaskLog struct { - LogUUID string `gorm:"column:log_uuid;type:varchar(50)comment:任务日志UUID;uniqueIndex:idx_task_log_uuid;not null" json:"taskLogUUID"` + LogUUID string `gorm:"column:log_uuid;type:varchar(50);comment:任务日志UUID;uniqueIndex:idx_task_log_uuid;not null" json:"taskLogUUID"` SubNum string `gorm:"column:sub_num;comment:任务用户编号;index:idx_task_log_sub_num;not null" json:"taskSubNum"` TelNum string `gorm:"column:tel_num;comment:任务用户手机号;index:idx_task_log_tel_num;not null" json:"taskTelNum"` ArtistName string `gorm:"column:artist_name;comment:任务艺人名称;index:idx_task_log_artist_name" json:"taskArtistName"`