You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
750 B

//
// DBRespiratory.h
// CareRingApp
//
// Created by Linktop on 2024/2/5.
// respiratory rate
#import <Foundation/Foundation.h>
#import "DBValueSuper.h"
NS_ASSUME_NONNULL_BEGIN
@interface DBRespiratory : DBValueSuper
/// Get the respiratory rate data reported by the device
/// - Parameters:
/// - macAddress: device mac address
/// - beginDate: start of time range
/// - endDate: end of time range
/// - isDesc: YES = reverse chronological order , NO=chronologically ascending
/// - cmpBlk: return result
+(void)query:(NSString * _Nonnull)macAddress Begin:(NSTimeInterval)beginTime End:(NSTimeInterval)endTime Desc:(BOOL)isDesc Cpmplete:(void(^)(NSMutableArray<DBRespiratory *> * results) )cmpBlk;
@end
NS_ASSUME_NONNULL_END