elec.go 492 B

123456789101112131415
  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. ElecNum int `json:"elec_num"`
  9. State int `json:"state,omitempty"`
  10. List json.RawMessage `json:"list,omitempty"`
  11. User json.RawMessage `json:"user,omitempty"`
  12. ElecSet json.RawMessage `json:"elec_set,omitempty"`
  13. }