pipeline_status.go 169 B

12345678910
  1. package entity
  2. type PipelineStatus struct {
  3. Id int64 `gorm:"primary_key"`
  4. Status string
  5. }
  6. func (PipelineStatus) TableName() string {
  7. return "pipeline_status"
  8. }