elec.go 449 B

1234567891011121314
  1. package elec
  2. import "encoding/json"
  3. type Info struct {
  4. Start int64 `json:"start,omitempty"`
  5. Show bool `json:"show"`
  6. Total int `json:"total,omitempty"`
  7. Count int `json:"count,omitempty"`
  8. State int `json:"state,omitempty"`
  9. List json.RawMessage `json:"list,omitempty"`
  10. User json.RawMessage `json:"user,omitempty"`
  11. ElecSet json.RawMessage `json:"elec_set,omitempty"`
  12. }