This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package CommonUtil
import (
uuid "github.com/satori/go.uuid"
"strings"
)
/**
功能:获取UUID
作者:黄海
时间:2020-02-03
*/
func GetUUID() string {
u2 := strings.ToUpper(uuid.NewV4().String())
return u2
}