修改:1、修改routerTool中获取通信报文接口返回值,Code改成0

This commit is contained in:
pengwang 2021-07-14 17:31:58 +08:00
parent e1707f1390
commit 4077b9021d
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func apiGetCommMessage(context *gin.Context) {
}
}
context.JSON(http.StatusOK, ResponseData{
Code: "1",
Code: "0",
Data: commMessageMap,
})
}