- package entity
- type SurplusData struct {
- Surplus int64 `json:"surplus"`
- Total int64 `json:"total"`
- Start_time string `json:"start_time"`
- End_time string `json:"end_time"`
- }
- type WaitEmpowerData struct {
- Start_time string `json:"start_time"`
- End_time string `json:"end_time"`
- Empower_count int `json:"empower_count"`
- Use_count int `json:"use_count"`
- Limit_strategy string `json:"limit_strategy"`
- }
|