...
|
...
|
@@ -4,6 +4,7 @@ import ( |
|
|
"encoding/json"
|
|
|
"fmt"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
|
|
|
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/log"
|
|
|
|
...
|
...
|
@@ -29,7 +30,7 @@ func (gateway HttplibAlliedCreationCooperation) CooperationContractAdd(param Req |
|
|
return nil, fmt.Errorf("获取创建共创合约失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:创建共创合约。", map[string]interface{}{
|
|
|
"result": string(byteResult),
|
|
|
"result": strings.ReplaceAll(string(byteResult), "\n", ""),
|
|
|
})
|
|
|
var result service_gateway.GatewayResponse
|
|
|
err = json.Unmarshal(byteResult, &result)
|
...
|
...
|
|