comm-utils.go 544 B

1234567891011121314151617181920212223242526272829303132
  1. package bus
  2. import "math/rand"
  3. type TreeAddDefineResp struct {
  4. DbId string
  5. Host string
  6. DefineId string
  7. Collection string
  8. }
  9. type TreeAddDefReq struct {
  10. DbName string
  11. UserId string
  12. Name string
  13. }
  14. type TreeRemoveDefReq struct {
  15. DbId string
  16. DefineId string
  17. }
  18. // 长度为62
  19. var bytes []byte = []byte("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890")
  20. func RandName(n int) string {
  21. result := make([]byte, n)
  22. for i := 0; i < n; i++ {
  23. result[i] = bytes[rand.Int31()%62]
  24. }
  25. return string(result)
  26. }