refactor: 组件升级、代码优化

This commit is contained in:
meilin.huang
2023-05-24 12:32:17 +08:00
parent 4fa52412c1
commit 9900b236ef
48 changed files with 777 additions and 345 deletions

27
server/pkg/utils/byte.go Normal file
View File

@@ -0,0 +1,27 @@
package utils
import "encoding/binary"
func Bytes2Int8(bytes []byte) int8 {
return int8(Byte2Uint16(bytes))
}
func Bytes2Int(bytes []byte) int {
return int(Byte2Uint64(bytes))
}
func Bytes2Int64(bytes []byte) int64 {
return int64(Byte2Uint64(bytes))
}
func Byte2Uint64(bytes []byte) uint64 {
return binary.LittleEndian.Uint64(bytes)
}
func Byte2Uint32(bytes []byte) uint32 {
return binary.LittleEndian.Uint32(bytes)
}
func Byte2Uint16(bytes []byte) uint16 {
return binary.LittleEndian.Uint16(bytes)
}