package models import ( //__import_packages__ ) type StorageResult struct { //result Result string `json:"result"` //ip Ip string `json:"ip"` //port Port string `json:"port"` //id Id string `json:"id"` //hash Hash string `json:"hash"` //len Len int32 `json:"len"` //error Error string `json:"error"` } func init() { AddTableName("storage_result") }