引用统一命名

This commit is contained in:
2025-02-20 17:46:57 +08:00
parent cbdce12462
commit 1a50abf5c4
14 changed files with 58 additions and 74 deletions

View File

@@ -3,7 +3,7 @@ package httpServer
import (
"net/http"
"common/resultstatus"
"common/resultStatus"
"common/webServer"
)

View File

@@ -2,7 +2,7 @@ package httpServer
import (
config "common/configsYaml"
"common/resultstatus"
"common/resultStatus"
"common/webServer"
"goutil/logUtilPlus"
"reflect"

View File

@@ -2,7 +2,7 @@ package httpServer
import (
config "common/configsYaml"
"common/resultstatus"
"common/resultStatus"
"common/utils"
"common/webServer"
"encoding/json"

View File

@@ -28,6 +28,7 @@ func init() {
//抛出一个异常
logUtil.FatalLog("Failed to connect to RabbitMQ: %serr:%s", rabbitMQAddress, err.Error())
return
}
// 打开一个通道
@@ -36,6 +37,7 @@ func init() {
//抛出一个异常
logUtil.FatalLog("Failed to open a channelerr:%s", err.Error())
return
}
//循环数据库数量

View File

@@ -3,7 +3,7 @@ package webServer
import (
"net/http"
"common/resultstatus"
"common/resultStatus"
)
// 处理函数

View File

@@ -2,7 +2,7 @@ package webServer
import (
config "common/configsYaml"
"common/resultstatus"
"common/resultStatus"
"goutil/logUtilPlus"
"reflect"
"strconv"

View File

@@ -1,7 +1,7 @@
package webServer
import (
"common/resultstatus"
"common/resultStatus"
)
// ResponseObject

View File

@@ -2,7 +2,7 @@ package webServer
import (
config "common/configsYaml"
"common/resultstatus"
"common/resultStatus"
"common/utils"
"encoding/json"
"fmt"