StorageResult_gen.go 293 B

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