You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
258 B
17 lines
258 B
package model
|
|
|
|
const (
|
|
PipelineInfoNormal = 1
|
|
PipelineInfoDisable = 2
|
|
)
|
|
|
|
// PipelineInfo 管道
|
|
type PipelineInfo struct {
|
|
Id uint64
|
|
Name string
|
|
SourceId uint64
|
|
TargetId uint64
|
|
Status uint8
|
|
CreateTime int64
|
|
UpdateTime int64
|
|
}
|
|
|