Files
geo/server/internal/tenant/domain/schedule_task.go
T

23 lines
455 B
Go
Raw Normal View History

package domain
import "time"
type ScheduleTask struct {
ID int64
TenantID int64
OperatorID *int64
PromptRuleID int64
BrandID *int64
Name string
CronExpr string
TargetPlatform *string
EnableWebSearch bool
GenerateCount int
StartAt *time.Time
EndAt *time.Time
NextRunAt *time.Time
Status string
CreatedAt time.Time
UpdatedAt time.Time
}