diff --git a/helper/uuid/uuid.go b/helper/uuid/uuid.go index 4c07cb09c213ca49618dae5546339b651dec8d24..b1c431faf34790fb026d517660341a21f5c1ed14 100644 --- a/helper/uuid/uuid.go +++ b/helper/uuid/uuid.go @@ -4,6 +4,7 @@ import ( "github.com/google/uuid" ) +// GenUUID 获取唯一ID func GenUUID() string { u, _ := uuid.NewRandom() return u.String()