|
|
package service_gateway
|
|
|
|
|
|
import (
|
|
|
"encoding/json"
|
|
|
rawjson "encoding/json"
|
|
|
"fmt"
|
|
|
"github.com/linmadan/egglib-go/utils/json"
|
|
|
"strconv"
|
|
|
"time"
|
|
|
|
...
|
...
|
@@ -18,7 +19,7 @@ type MessageCode struct { |
|
|
//GatewayResponse 统一消息返回格式
|
|
|
type GatewayResponse struct {
|
|
|
MessageCode
|
|
|
Data json.RawMessage `json:"data"`
|
|
|
Data rawjson.RawMessage `json:"data"`
|
|
|
}
|
|
|
|
|
|
type BaseServiceGateway struct {
|
...
|
...
|
|