hr_course_detail.go 536 B

12345678910111213141516171819
  1. package model
  2. type HrResult struct {
  3. Cle int `json:"cle"`
  4. PureCalorieNoVo2 int `json:"pure_calorie_no_vo_2"`
  5. Ck int `json:"ck"`
  6. SportPer int `json:"sport_per"`
  7. Hr int `json:"hr"`
  8. AvgHr int `json:"avg_hr"`
  9. MaxHr int `json:"max_hr"`
  10. IsWin bool `json:"is_win"`
  11. IsBest bool `json:"is_best"`
  12. IsBreaking bool `json:"is_breaking"`
  13. BreakTime int `json:"break_time"`
  14. }
  15. type HrCourseDetail struct {
  16. HcId int
  17. HrResult
  18. }