From fcc838ff43c2f12c02702e4da1b09437441391e6 Mon Sep 17 00:00:00 2001 From: bx1834938347-prog Date: Tue, 13 Jan 2026 11:15:30 +0800 Subject: [PATCH] Update cron.go --- pkg/service/cron/cron.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/service/cron/cron.go b/pkg/service/cron/cron.go index 538d933..47561b4 100644 --- a/pkg/service/cron/cron.go +++ b/pkg/service/cron/cron.go @@ -131,7 +131,7 @@ func ExportExcelExecutionResult(c *gin.Context) { } titleList := []string{ - "任务标题", "艺人编号", "艺人姓名", "内容类型", "内容标题", "执行结果", "原因", "TIKTOK", "TIKTOK结果", "YOUTUBE", "YOUTUBE结果", "INS", "INS结果", "DM", "DM结果", "BULESKY", "BULESKY结果", + "任务标题", "艺人编号", "艺人姓名", "内容类型", "内容标题", "执行结果", "原因", "TIKTOK", "YOUTUBE", "INS", "DM", "BULESKY", } var dataList []interface{} for _, task := range res.Data { @@ -144,15 +144,10 @@ func ExportExcelExecutionResult(c *gin.Context) { task.ResultDescription, task.ResultDesc, task.TIKTOKStatusDesc, - task.TIKTOKResult, task.YOUTUBEStatusDesc, - task.YOUTUBEResult, task.INSStatusDesc, - task.INSResult, task.DMStatusDesc, - task.DMResult, task.BULESKYStatusDesc, - task.BULESKYResult, } dataList = append(dataList, &data) }