修改数据类型

This commit is contained in:
邹宗楠
2022-04-06 16:42:02 +08:00
parent 2cfad44038
commit a557a62498
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ func (a *API) CreateOrder(createOrderParam *CreateOrderReqParam) (result string,
if err := json.Unmarshal([]byte(utils.Interface2String(orderId)), res); err != nil {
return "", err
}
return res.OrderId, nil
return utils.Int64ToStr(res.OrderId), nil
}
return "", err
}