| 123456789101112131415161718192021222324252627282930 |
- 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")
- }
|