You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
492 B
15 lines
492 B
package elec |
|
|
|
import "encoding/json" |
|
|
|
type Info struct { |
|
Start int64 `json:"start,omitempty"` |
|
Show bool `json:"show"` |
|
Total int `json:"total,omitempty"` |
|
Count int `json:"count,omitempty"` |
|
ElecNum int `json:"elec_num"` |
|
State int `json:"state,omitempty"` |
|
List json.RawMessage `json:"list,omitempty"` |
|
User json.RawMessage `json:"user,omitempty"` |
|
ElecSet json.RawMessage `json:"elec_set,omitempty"` |
|
}
|
|
|