| 12345678910111213141516171819 |
- 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"`
- Hr int `json:"hr"`
- AvgHr int `json:"avg_hr"`
- MaxHr int `json:"max_hr"`
- IsWin bool `json:"is_win"`
- IsBest bool `json:"is_best"`
- IsBreaking bool `json:"is_breaking"`
- BreakTime int `json:"break_time"`
- }
- type HrCourseDetail struct {
- CrID int
- HrResult
- }
|