提交 ab4bdbf1 authored 作者: gukai's avatar gukai

修改sls结构体

上级 de594746
...@@ -65,14 +65,14 @@ type TagsMsgData struct { ...@@ -65,14 +65,14 @@ type TagsMsgData struct {
//通知api请求日志 //通知api请求日志
type NotifyApiLog struct { type NotifyApiLog struct {
ID int `json:"id"` ID interface{} `json:"id"`
Type string `json:"type"` //api类型 goods/order Type interface{} `json:"type"` //api类型 goods/order
Method string `json:"method"` //请求方式 Method interface{} `json:"method"` //请求方式
RequestUri string `json:"request_uri"` //请求路径 RequestUri interface{} `json:"request_uri"` //请求路径
AppID int `json:"app_id"` AppID interface{} `json:"app_id"`
RequestTime int `json:"request_time"` //请求时间戳 RequestTime interface{} `json:"request_time"` //请求时间戳
Body string `json:"body"` //请求参数 Body interface{} `json:"body"` //请求参数
ResponseTime int `json:"response_time"` //响应时间 ResponseTime interface{} `json:"response_time"` //响应时间
ResponseBody string `json:"response_body"` //响应参数 ResponseBody interface{} `json:"response_body"` //响应参数
Error string `json:"error"` //错误信息 Error interface{} `json:"error"` //错误信息
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论