elec.go 437 B

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