Go 生成UUID

使用第三方包:

1
github.com/satori/go.uuid

使用很简单:

1
2
newUUID, _ := uuid.NewV4()
newUUIDString := newUUID.String()