StorageResult_gen.go 311 B

123456789101112131415161718192021222324
  1. package models
  2. import (
  3. )
  4. type StorageResult struct {
  5. //result
  6. Result int32 `json:"result"`
  7. //ip
  8. Ip string `json:"ip"`
  9. //port
  10. Port int32 `json:"port"`
  11. //id
  12. Id int32 `json:"id"`
  13. //hash
  14. Hash string `json:"hash"`
  15. //len
  16. Len int32 `json:"len"`
  17. //error
  18. Error string `json:"error"`
  19. }