entity.go 442 B

12345678910111213141516
  1. package entity
  2. type SurplusData struct {
  3. Surplus int64 `json:"surplus"`
  4. Total int64 `json:"total"`
  5. Start_time string `json:"start_time"`
  6. End_time string `json:"end_time"`
  7. }
  8. type WaitEmpowerData struct {
  9. Start_time string `json:"start_time"`
  10. End_time string `json:"end_time"`
  11. Empower_count int `json:"empower_count"`
  12. Use_count int `json:"use_count"`
  13. Limit_strategy string `json:"limit_strategy"`
  14. }