• This project
    • Loading...
  • Sign in

常守达 / doublefeel_flutter · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • doublefeel_flutter
  • ios
  • Runner Watch App
  • Models
  • TodayHealthInfo.swift
  • feat(ui):同步原生项目 healthkit上传
    d34cdac8
    by 权海
    2026-07-01 13:36:46 +0800  
    Browse Files
TodayHealthInfo.swift 357 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//
//  TodayHealthInfo.swift
//  hippo-watch Watch App
//
//  Created by shihao on 2025/7/8.
//

import Foundation

enum HealthType: String{
    case hrv
    case realtime_stress
}


struct RecentData: Codable {
    var heartRate: Double?
    var oxygenSaturation: Int?
    var move: Int?
    var exercise: Int?
    var stand: Int?
    var steps: Int?
}