From b646dfdc1164b75607c7aabf3d603f10c6be66fd Mon Sep 17 00:00:00 2001 From: liangxu Date: Wed, 10 Jun 2026 11:21:05 +0800 Subject: [PATCH] fix: add publish_enterprise_site_targets field to ScheduleTask model --- .../tenant/repository/generated/models.go | 67 ++++++++++--------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/server/internal/tenant/repository/generated/models.go b/server/internal/tenant/repository/generated/models.go index c693e85..cef04f0 100644 --- a/server/internal/tenant/repository/generated/models.go +++ b/server/internal/tenant/repository/generated/models.go @@ -893,39 +893,40 @@ type QuotaReservation struct { } type ScheduleTask struct { - ID int64 `json:"id"` - TenantID int64 `json:"tenant_id"` - PromptRuleID pgtype.Int8 `json:"prompt_rule_id"` - BrandID pgtype.Int8 `json:"brand_id"` - Name string `json:"name"` - CronExpr string `json:"cron_expr"` - StartAt pgtype.Timestamptz `json:"start_at"` - EndAt pgtype.Timestamptz `json:"end_at"` - NextRunAt pgtype.Timestamptz `json:"next_run_at"` - Status string `json:"status"` - CreatedAt pgtype.Timestamptz `json:"created_at"` - UpdatedAt pgtype.Timestamptz `json:"updated_at"` - DeletedAt pgtype.Timestamptz `json:"deleted_at"` - OperatorID pgtype.Int8 `json:"operator_id"` - EnableWebSearch bool `json:"enable_web_search"` - GenerateCount int32 `json:"generate_count"` - WorkspaceID pgtype.Int8 `json:"workspace_id"` - AutoPublish bool `json:"auto_publish"` - PublishAccountIds []byte `json:"publish_account_ids"` - CoverAssetUrl pgtype.Text `json:"cover_asset_url"` - CoverImageAssetID pgtype.Int8 `json:"cover_image_asset_id"` - TargetType string `json:"target_type"` - SubscriptionPromptID pgtype.Int8 `json:"subscription_prompt_id"` - ScheduleKind string `json:"schedule_kind"` - ScheduleDays []byte `json:"schedule_days"` - ScheduleTimeMode string `json:"schedule_time_mode"` - RandomWindowStart pgtype.Time `json:"random_window_start"` - RandomWindowEnd pgtype.Time `json:"random_window_end"` - GenerationInputJson []byte `json:"generation_input_json"` - LastRunAt pgtype.Timestamptz `json:"last_run_at"` - LastDispatchStatus pgtype.Text `json:"last_dispatch_status"` - LastDispatchError pgtype.Text `json:"last_dispatch_error"` - ConsecutiveFailures int32 `json:"consecutive_failures"` + ID int64 `json:"id"` + TenantID int64 `json:"tenant_id"` + PromptRuleID pgtype.Int8 `json:"prompt_rule_id"` + BrandID pgtype.Int8 `json:"brand_id"` + Name string `json:"name"` + CronExpr string `json:"cron_expr"` + StartAt pgtype.Timestamptz `json:"start_at"` + EndAt pgtype.Timestamptz `json:"end_at"` + NextRunAt pgtype.Timestamptz `json:"next_run_at"` + Status string `json:"status"` + CreatedAt pgtype.Timestamptz `json:"created_at"` + UpdatedAt pgtype.Timestamptz `json:"updated_at"` + DeletedAt pgtype.Timestamptz `json:"deleted_at"` + OperatorID pgtype.Int8 `json:"operator_id"` + EnableWebSearch bool `json:"enable_web_search"` + GenerateCount int32 `json:"generate_count"` + WorkspaceID pgtype.Int8 `json:"workspace_id"` + AutoPublish bool `json:"auto_publish"` + PublishAccountIds []byte `json:"publish_account_ids"` + CoverAssetUrl pgtype.Text `json:"cover_asset_url"` + CoverImageAssetID pgtype.Int8 `json:"cover_image_asset_id"` + TargetType string `json:"target_type"` + SubscriptionPromptID pgtype.Int8 `json:"subscription_prompt_id"` + ScheduleKind string `json:"schedule_kind"` + ScheduleDays []byte `json:"schedule_days"` + ScheduleTimeMode string `json:"schedule_time_mode"` + RandomWindowStart pgtype.Time `json:"random_window_start"` + RandomWindowEnd pgtype.Time `json:"random_window_end"` + GenerationInputJson []byte `json:"generation_input_json"` + LastRunAt pgtype.Timestamptz `json:"last_run_at"` + LastDispatchStatus pgtype.Text `json:"last_dispatch_status"` + LastDispatchError pgtype.Text `json:"last_dispatch_error"` + ConsecutiveFailures int32 `json:"consecutive_failures"` + PublishEnterpriseSiteTargets []byte `json:"publish_enterprise_site_targets"` } type SupplierMediaPriceOverride struct {