pcm-coordinator/common/param/aiBase.go

11 lines
350 B
Go

package param
type AiBase struct {
TaskId int64 `json:"taskId" db:"task_id"`
ServiceName string `json:"serviceName" db:"service_name"`
ProjectId string `json:"projectId" db:"project_id"`
Status string `json:"status" db:"status"`
YamlString string `json:"yamlString" db:"yaml_string"`
Name string `json:"name" db:"name"`
}