Browse Source

Merge remote-tracking branch 'origin/master'

pull/403/head
tzwang 10 months ago
parent
commit
d9f3fc8d37
2 changed files with 4 additions and 0 deletions
  1. +2
    -0
      desc/schedule/pcm-schedule.api
  2. +2
    -0
      internal/types/types.go

+ 2
- 0
desc/schedule/pcm-schedule.api View File

@@ -9,6 +9,7 @@ info(

type (
ScheduleReq {
Token string `json:"token,optional"`
AiOption *AiOption `json:"aiOption,optional"`
}

@@ -162,6 +163,7 @@ type (

// 创建任务(下发资源):/createTask
CreateTaskReq{
Token string `json:"token,optional"`
JobResources JobResources `json:"jobResources"`
DataDistributes DataDistribute `json:"dataDistributes"`
}


+ 2
- 0
internal/types/types.go View File

@@ -5732,6 +5732,7 @@ type ParticipantSl struct {
}

type ScheduleReq struct {
Token string `json:"token,optional"`
AiOption *AiOption `json:"aiOption,optional"`
}

@@ -5883,6 +5884,7 @@ type QueryResourcesResp struct {
}

type CreateTaskReq struct {
Token string `json:"token,optional"`
JobResources JobResources `json:"jobResources"`
DataDistributes DataDistribute `json:"dataDistributes"`
}


Loading…
Cancel
Save