Commit bed9f7a8 by 王宇航

1.6.9

將傳輸回調data改為string類型,這樣接收時直接用json解析
parent 415748f8
......@@ -5,5 +5,5 @@ class SocketCallbackBean(
val statusCode: Int,
val msgCode: String,
val errorMsg: String,
val data: Any? = null
val data: String? = null
)
\ No newline at end of file
......@@ -19,7 +19,7 @@ object MsgParser {
200,
msgBean.code.toString(),
result.errorMsg,
result.data
GsonUtils.GsonString(result.data)
)
} else {
return null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment