mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-06 14:16:51 +08:00
20 lines
348 B
Go
20 lines
348 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Workflow struct {
|
|
ID uint64
|
|
CreatedAt time.Time `db:"created_at"`
|
|
UID string
|
|
Name string
|
|
GeneratedName string
|
|
Parameters []Parameter
|
|
Status string
|
|
WorkflowTemplate *WorkflowTemplate
|
|
}
|
|
|
|
type Parameter struct {
|
|
Name string
|
|
Value *string
|
|
}
|