StorageResult_gen.go 389 B

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