| 1234567891011121314151617181920 |
- package model
- type HrResult struct {
- Cle int `json:"cle"`
- PureCalorieNoVo2 int `json:"pure_calorie_no_vo_2"`
- Ck int `json:"ck"`
- SportPer int `json:"sport_per"`
- HeartRate int `json:"heart_rate"`
- AvgHr int `json:"avg_hr"`
- MaxHr int `json:"max_hr"`
- Battery int `json:"battery"`
- GroupNo int `json:"group_no"`
- IsPrivate int `json:"is_private"`
- IsWin bool `json:"is_win"`
- IsBest bool `json:"is_best"`
- }
- type HrCourseDetail struct {
- CrID int
- HrResult
- }
|