2026-04-02 00:31:28 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type ScheduleTask struct {
|
2026-04-30 01:32:19 +08:00
|
|
|
ID int64
|
|
|
|
|
TenantID int64
|
|
|
|
|
WorkspaceID *int64
|
|
|
|
|
OperatorID *int64
|
|
|
|
|
PromptRuleID int64
|
|
|
|
|
BrandID *int64
|
|
|
|
|
Name string
|
|
|
|
|
CronExpr string
|
|
|
|
|
AutoPublish bool
|
|
|
|
|
PublishAccountIDs []string
|
|
|
|
|
CoverAssetURL *string
|
|
|
|
|
CoverImageAssetID *int64
|
|
|
|
|
EnableWebSearch bool
|
|
|
|
|
GenerateCount int
|
|
|
|
|
StartAt *time.Time
|
|
|
|
|
EndAt *time.Time
|
|
|
|
|
NextRunAt *time.Time
|
|
|
|
|
Status string
|
|
|
|
|
CreatedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
2026-04-02 00:31:28 +08:00
|
|
|
}
|