| @@ -38,11 +38,13 @@ type ReturnMsg struct { | |||||
| Data ReturnData `json:"data"` | Data ReturnData `json:"data"` | ||||
| Times int64 `json:"times"` | Times int64 `json:"times"` | ||||
| } | } | ||||
| type ReturnData struct { | type ReturnData struct { | ||||
| ID int `json:"id"` | ID int `json:"id"` | ||||
| No string `json:"no"` | No string `json:"no"` | ||||
| StandardJson string `json:"standardJson"` | StandardJson string `json:"standardJson"` | ||||
| Code int `json:"code"` | Code int `json:"code"` | ||||
| Msg string `json:"msg"` | |||||
| Status int `json:"status"` | Status int `json:"status"` | ||||
| } | } | ||||
| @@ -243,10 +245,10 @@ func GetTaskStatus(jobID string) (*ReturnMsg, error) { | |||||
| log.Info("error =" + err.Error()) | log.Info("error =" + err.Error()) | ||||
| return nil, fmt.Errorf("Get task status error: %v", err) | return nil, fmt.Errorf("Get task status error: %v", err) | ||||
| } else { | } else { | ||||
| var reMap *ReturnMsg | |||||
| err = json.Unmarshal(res.Body(), reMap) | |||||
| var reMap ReturnMsg | |||||
| err = json.Unmarshal(res.Body(), &reMap) | |||||
| if err == nil { | if err == nil { | ||||
| return reMap, nil | |||||
| return &reMap, nil | |||||
| } else { | } else { | ||||
| return nil, fmt.Errorf("get error,code not 0") | return nil, fmt.Errorf("get error,code not 0") | ||||
| } | } | ||||