You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package param
-
- type HpcBase struct {
- TaskId int64 `json:"taskId" db:"task_id"`
- ServiceName string `json:"serviceName" db:"service_name"`
- JobId string `json:"jobId" db:"job_id"`
- Name string `json:"name" db:"name"`
- WorkDir string `json:"workDir" db:"work_dir"`
- WallTime string `json:"wallTime" db:"wall_time"`
- Status string `json:"status" db:"status"`
- Result string `json:"result" db:"result"`
- YamlString string `json:"yamlString" db:"yaml_string"`
- }
-
- type AiBase struct {
- }
|