// // IDOSyncBpDataModel.h // IDOBluetoothInternal // // Created by 何东阳 on 2019/8/6. // Copyright © 2019 何东阳. All rights reserved. // #import #if __has_include() #elif __has_include() #else #import "IDOBluetoothBaseModel.h" #endif @interface IDOSyncBpDataItemInfoBluetoothModel : IDOBluetoothBaseModel /** 较大收缩压 | Large systolic pressure */ @property (nonatomic,assign) NSInteger sysBlood; /** 较小舒张压 | Small diastolic pressure */ @property (nonatomic,assign) NSInteger diasBlood; /** 子时间偏移量 (分钟) | Subtime offset (minutes) */ @property (nonatomic,assign) NSInteger offset DEPRECATED_MSG_ATTRIBUTE("parameter is invalidp,please use \"timeStr\""); /** 序列号 | Serial number */ @property (nonatomic,assign) NSInteger serialNumber DEPRECATED_MSG_ATTRIBUTE("parameter is invalid,please use \"timeStr\""); /** 时间戳 精确到日期 date interval since 1970 (如:1444361933) | Timestamp date interval since 1970 (eg: 14443361933) */ @property (nonatomic,copy) NSString * dateStr; /** 时间戳 精确到分钟 time interval since 1970 (如:1444361933) | Timestamp time interval since 1970 (eg: 14443361933) */ @property (nonatomic,copy) NSString * timeStr; /** 本地设置数据,区分手环同步的数据 | Locally set data to distinguish the data of the bracelet synchronization */ @property (nonatomic,assign) BOOL isLocal; @end @interface IDOSyncBpDataInfoBluetoothModel : IDOBluetoothBaseModel /** 血压数据包量 | Blood pressure data package */ @property (nonatomic,assign) NSInteger itemsCount; /** 睡眠平均血压 | Average blood pressure in sleep */ @property (nonatomic,assign) NSInteger sleepAvgBp; /** 最大血压值 | Maximum blood pressure value */ @property (nonatomic,assign) NSInteger maxBp; /** 年份 | Year */ @property (nonatomic,assign) NSInteger year; /** 月份 | Month */ @property (nonatomic,assign) NSInteger month; /** 日期 | Date */ @property (nonatomic,assign) NSInteger day; /** * 血压集合 只有定义好的查询方法才能转成model集合,自定义的查询方法无法直接转成model集合,需要再查询itemModel赋给当前属性 * Blood pressure collection Only defined query methods can be converted into model collections. Custom query methods cannot be directly * converted into model collections. You need to query itemModel to assign current attributes. */ @property (nonatomic,copy) NSArray * bloodbPressures; /** 时间戳 精确到日期 date interval since 1970 (如:1444361933) | Timestamp date interval since 1970 (eg: 14443361933) */ @property (nonatomic,copy) NSString * dateStr; /** 总时间偏移量 (分钟) | Total time offset (minutes) */ @property (nonatomic,assign) NSUInteger minuteOffset; /** 本地设置数据,区分手环同步的数据 | Locally set data to distinguish the data of the bracelet synchronization */ @property (nonatomic,assign) BOOL isLocal; @end @interface IDOSyncBpDataModel : NSObject /** * @brief 查询当前设备某年12个月所有数据 (如果查询当月无数据,会创建空的数据对象,大于当月的数据不累加) * Query all data of the current device for 12 months in a certain year (If there is no data in the current month, an empty data object will be created, * and the data larger than the current month will not be accumulated) * @param year 年 (如 : 2018) | year (eg 2018) * @param isQuery 是否查询items | is query items * @return 一年12个月的血压数据集合,其中IDOSyncBpDataInfoBluetoothModel对象是一天总血压数据模型 * A 12-month blood pressure data collection, where the IDOSyncBpDataInfoBluetoothModel object is a total blood pressure data model for the day */ + (NSArray *> *)queryOneYearBloodPressuresWithYear:(NSInteger)year macAddr:(NSString *)macAddr isQueryItems:(BOOL)isQuery; /** * @brief 查询当前设备某月份的所有数据 (如果查询当天无数据,会创建空的数据对象,大于当天的数据不累加) * Query all data of the current device for a certain month (If there is no data on the query day, an empty data object will be created, * which is larger than the data of the day) * @param year 年 (如 : 2018) | Year (eg: 2018) * @param month 月 (如 : 9) | Month (eg: 9) * @param dates 当前查询月份的所有日期集合的指针 (格式 :[10/01...10/31]) * Pointer to all date collections for the current query month (format: [10/01...10/31]) * @param isQuery 是否查询items | is query items * @return 一个月的血压数据集合,其中IDOSyncBpDataInfoBluetoothModel对象是一天总血压数据模型 * One month blood pressure data set, where the IDOSyncBpDataInfoBluetoothModel object is the total day blood pressure data model */ + (NSArray <__kindof IDOSyncBpDataInfoBluetoothModel *>*)queryOneMonthBloodPressuresWithYear:(NSInteger)year month:(NSInteger)month macAddr:(NSString *)macAddr datesOfMonth:(NSArray **)dates isQueryItems:(BOOL)isQuery; /** * @brief 查询当前设备某周的所有数据 (如果查询当天无数据,会创建空的数据对象,大于当天的数据不累加) * Query all data of the current device for a certain week (If there is no data on the day of the query, an empty data object will be created, * and the data larger than the current day will not be accumulated) * @param weekIndex 周的查询索引 (0 : 当周, 1 : 上一周, 2 : 上两周 ...) | Week's query index (0: week, 1 : last week, 2 : last two weeks...) * @param weekStartDay 星期的开始日 (0 : 星期日, 1 : 星期一, 2 : 星期二 ...) | Start of the week (0: Sunday, 1 : Monday, 2 : Tuesday ...) * @param dates 当前查询周的所有日期集合的指针 (格式 :[10/01...10/07]) * Pointer to all date collections for the current query week (format: [10/01...10/07]) * @param isQuery 是否查询items | is query items * @return 一周的血压数据集合,其中IDOSyncBpDataInfoBluetoothModel对象是一天总血压数据模型 * A week's blood pressure data collection, where the IDOSyncBpDataInfoBluetoothModel object is the total day blood pressure data model */ + (NSArray <__kindof IDOSyncBpDataInfoBluetoothModel *>*)queryOneWeekBloodPressuresWithWeekIndex:(NSInteger)weekIndex weekStartDay:(NSInteger)weekStartDay macAddr:(NSString *)macAddr datesOfWeek:(NSArray **)dates isQueryItems:(BOOL)isQuery; /** * @brief 查询当前设备某天血压数据并有详情数据 * Query current device blood pressure data for one day and have detailed data * @param macAddr mac 地址 | mac address * @param year 年份 | year * @param month 月份 | month * @param day 日期 | day * @return 一天血压数据的集合和详情数据集合 | Collection of day blood pressure data and detailed data */ + (NSArray<__kindof IDOSyncBpDataInfoBluetoothModel *> *)queryOneDayBloodPressureDetailWithMac:(NSString *)macAddr year:(NSInteger)year month:(NSInteger)month day:(NSInteger)day; /** * @brief 查询当前设备最近一天血压数据并有详情数据 * Query the current day's blood pressure data of the device and have detailed data * @param macAddr mac 地址 | mac address * @return 一天血压数据的集合和详情数据 | Collection of day blood pressure data and detailed data */ + (__kindof IDOSyncBpDataInfoBluetoothModel *)queryLastDayBloodPressureDetailWithMac:(NSString *)macAddr; /** * @brief 查询所有血压数据 血压包数大于0 * Query all blood pressure data The number of blood pressure packets is greater than 0 * @param macAddr mac 地址 | mac address * @return 所有血压数据的集合和详情数据 | Collection and detailed data of all blood pressure data */ + (NSArray <__kindof IDOSyncBpDataInfoBluetoothModel *>*)queryAllBloodPressuresWithMac:(NSString *)macAddr; @end