summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOGetInfoBluetoothModel.h
blob: 3e845466fc8d62d867fbb96a1362d31938923dec (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
//
//  IDOGetInfoBluetoothModel.h
//  VeryfitSDK
//
//  Created by apple on 2018/7/20.
//  Copyright © 2018年 hedongyang. All rights reserved.
//

#if __has_include(<IDOBluetoothInternal/IDOBluetoothInternal.h>)
#elif __has_include(<IDOBlueProtocol/IDOBlueProtocol.h>)
#else
#import "IDOBluetoothBaseModel.h"
#endif

#pragma mark ====  获取下载语言 model ====

@interface IDOGetDownLanguageBluetoothModel:IDOBluetoothBaseModel
/**
 * 当前使用的语言 | use lang
 */
@property (nonatomic,assign) NSInteger useLang;
/**
 * 默认语言 | default lang
 */
@property (nonatomic,assign) NSInteger defaultLang;
/**
 * 固定存储语言个数 | fixed lang count
 */
@property (nonatomic,assign) NSInteger fixedLangCount;
/**
 * 最大存储语言个数 | max storage lang
 */
@property (nonatomic,assign) NSInteger maxStorageLang;
/**
 * 已经存储语言值  |  language values
 */
@property (nonatomic,assign) NSArray * languageValues;
/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetDownLanguageBluetoothModel
 */
+ (__kindof IDOGetDownLanguageBluetoothModel *)currentModel;

@end

#pragma mark ====  默认运动类型值 model ====
@interface IDOGetDefaultSportTypeBluetoothModel:IDOBluetoothBaseModel
/**
 * 默认运动类型的个数 | sport type count
 */
@property (nonatomic,assign) NSInteger sportTypeCount;

/**
 运动类型值集合,集合排序就是运动类型排序 | set of motion type values, and set sort is motion type sort
 */
@property (nonatomic,strong) NSArray * sportTypes;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetDefaultSportTypeBluetoothModel
 */
+ (__kindof IDOGetDefaultSportTypeBluetoothModel *)currentModel;

@end

#pragma mark ====  手环检查版本号 model ====
@interface IDOCheckUpdateBluetoothModel:IDOBluetoothBaseModel
/**
 * app 响应状态 | flag code
 * 0x00 : 已经是最新版本;0x01 :有新版本;0x02 :网络错误;0x03 :其他错误
 * 0x00 : it is the latest version; 0x01: there are new versions; 0x02: network error; 0x03: other errors
 */
@property (nonatomic,assign) NSInteger flagCode;

/**
 固件最新版本号 | new version
 */
@property (nonatomic,assign) NSInteger newVersion;

@end

#pragma mark ==== 获取5个心率区间交换数据 ====
@interface IDOGetFiveHrReplyInfoBluetoothModel:IDOBluetoothBaseModel
/**
 燃烧脂肪 | Threshold for burning fat
 */
@property (nonatomic,assign) NSInteger burnFat;

/**
 有氧运动 | Aerobic threshold
 */
@property (nonatomic,assign) NSInteger aerobic;

/**
 极限运动 | Limit threshold
 */
@property (nonatomic,assign) NSInteger limitValue;

/**
 热身运动 | Warm-up
 */
@property (nonatomic,assign) NSInteger warmUp;

/**
 无氧运动 | Anaerobic exercise
 */
@property (nonatomic,assign) NSInteger anaerobic;

@end

#pragma mark ==== 获取版本信息model ====
@interface IDOGetVersionInfoBluetoothModel:IDOBluetoothBaseModel

/**
 * SDK版本 数值为x10,11表示1.1的版本
 * SDK version number is x10, and 11 represents the 1.1 version
 */
@property (nonatomic,assign) NSInteger sdkVersion;

/**
 * 心率算法版本 数值为x10,11表示1.1的版本
 * Version value of the heart rate algorithm is x10, and 11 represents version 1.1
 */
@property (nonatomic,assign) NSInteger hrAlgorithmVersion;

/**
 * 睡眠算法版本 数值为x10,11表示1.1的版本
 * Sleep algorithm version number is x10, and 11 represents version 1.1
 */
@property (nonatomic,assign) NSInteger sleepAlgorithmVersion;

/**
 * 计步算法版本 数值为x10,11表示1.1的版本
 * Step counting algorithm version value is x10,11 represents 1.1 version
 */
@property (nonatomic,assign) NSInteger stepAlgorithmVersion;

/**
 * 手势识别算法 数值为x10,11表示1.1的版本
 * Value of gesture recognition algorithm is x10, and 11 represents version 1.1
 */
@property (nonatomic,assign) NSInteger gestureRecognitionVersion;

/**
 * PCB 版本 数值为x10,11表示1.1的版本
 * PCB version number is x10, and 11 represents version 1.1
 */
@property (nonatomic,assign) NSInteger pcbVersion;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetVersionInfoBluetoothModel
 */
+ (__kindof IDOGetVersionInfoBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取GPS状态model ====
@interface IDOGetGpsStatusBluetoothModel:IDOBluetoothBaseModel
/**
 * GPS 运行状态 0 没有运行,1 正在搜星,2 为正在跟踪
 * GPS running status 0 No running, 1 is searching for stars, 2 is tracking
 */
@property (nonatomic,assign) NSInteger gpsRunStatus;

/**
 * AGPS 是否有效,有效期剩余小时,非0为有效,
 * AGPS is valid, the remaining period is valid, non-zero is valid,
 */
@property (nonatomic,assign) NSInteger isAgpsVaild;

@end


#pragma mark ==== 获取热启动参数model ====
@interface IDOGetHotStartParamBluetoothModel:IDOBluetoothBaseModel
/**
 晶振偏移 默认 200 |  crystals offset default 200
 */
@property (nonatomic,assign) NSInteger tcxoOffset;

/**
 * 当前位置的经度 当前经度 x 10^6 , 去掉小数,注意西经为负数 默认 0
 * The current position of the longitude of the current longitude x 10 ^ 6,
 * remove the decimal, pay attention to the scriptures is negative. default 0
 */
@property (nonatomic,assign) NSInteger longitude;

/**
 * 当前位置的纬度, x10^6 ,去掉小数,注意南纬为负数 默认 0
 * The current position of latitude, x10 ^ 6, remove the decimal,
 * pay attention to the south of the equator is negative. default 0
 */
@property (nonatomic,assign) NSInteger latitude;

/**
 当前位置的海拔高度 x10, 去掉小数 默认 0
 The altitude of the current position x10, get rid of the decimal. default 0
 */
@property (nonatomic,assign) NSInteger altitude;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetHotStartParamBluetoothModel
 */
+ (__kindof IDOGetHotStartParamBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取GPS信息model ====
@interface IDOGetGpsInfoBluetoothModel:IDOBluetoothBaseModel

/**
 错误码 | error code
 */
@property (nonatomic,assign) NSInteger errorCode;

/**
 固件版本 | Firmware version
 */
@property (nonatomic,assign) NSInteger fwVersion;

/**
 GPS信息 |  GPS information
 */
@property (nonatomic,assign) NSInteger agpsInfo;

/**
 GPS错误码 | GPS error code
 */
@property (nonatomic,assign) NSInteger agpsErrCode;

/**
 * @brief  查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetGpsInfoBluetoothModel
 */
+ (__kindof IDOGetGpsInfoBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取hid信息model ====
@interface IDOGetHidInfoBluetoothModel:IDOBluetoothBaseModel

/**
 是否开启 | Whether to open
 */
@property (nonatomic,assign) BOOL isStart;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象  (暂停使用,无效)
 * Query the database, if the query does not initialize a new model object (suspended, invalid)
 * @return IDOGetHidInfoBluetoothModel
 */
+ (__kindof IDOGetHidInfoBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取活动和GPS个数信息model ====
@interface IDOGetActivityCountBluetoothModel:IDOBluetoothBaseModel

/**
 活动个数 | Number of activities
 */
@property (nonatomic,assign) NSInteger activityCount;

/**
 活动包数 | Number of active packages
 */
@property (nonatomic,assign) NSInteger activityPacketCount;

/**
 GPS个数 | Number of GPS data
 */
@property (nonatomic,assign) NSInteger gpsCount;

/**
 GPS包数 | Number of GPS packets
 */
@property (nonatomic,assign) NSInteger gpsPacketCount;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象 (未作存储处理,只会初始化新对象)
 * Query the database, if the query does not initialize a new model object (not stored for processing, only the new object will be initialized)
 * @return IDOGetActivityCountBluetoothModel
 */
+ (__kindof IDOGetActivityCountBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取加速度传感器参数信息model ====
@interface IDOGetGsensorParamBluetoothModel:IDOBluetoothBaseModel

/**
 率 |  rate
 */
@property (nonatomic,assign) NSInteger rate;

/**
 间隔 | range
 */
@property (nonatomic,assign) NSInteger range;

/**
 阀值 |  Threshold
 */
@property (nonatomic,assign) NSInteger threshold;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象 (暂停使用,无效)
 * Query the database, if the query does not initialize a new model object (suspended, invalid)
 * @return IDOGetHrSensorParamBluetoothModel
 */
+ (__kindof IDOGetGsensorParamBluetoothModel *)currentModel;
@end

#pragma mark ==== 获取心率传感器参数信息model ====
@interface IDOGetHrSensorParamBluetoothModel:IDOBluetoothBaseModel

/**
 心率值 | Heart rate value
 */
@property (nonatomic,assign) NSInteger rate;

/**
 (未知参数) | (unknown parameter)
 */
@property (nonatomic,assign) NSInteger ledSelect;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象 *(暂停使用,无效)
 * Query the database, if the query does not initialize a new model object (suspended, invalid)
 * @return IDOGetHrSensorParamBluetoothModel
 */
+ (__kindof IDOGetHrSensorParamBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取设备时间信息model ====
@interface IDOGetDeviceTimeBluetoothModel:IDOBluetoothBaseModel

/**
 * 年 | year
 *
 */
@property (nonatomic,assign) NSInteger year;

/**
 月 | month
 */
@property (nonatomic,assign) NSInteger month;

/**
 日 | day
 */
@property (nonatomic,assign) NSInteger day;

/**
 时 | hour
 */
@property (nonatomic,assign) NSInteger hour;

/**
 分 | Minute
 */
@property (nonatomic,assign) NSInteger minute;

/**
 秒 | second
 */
@property (nonatomic,assign) NSInteger second;

/**
 周 | week
 */
@property (nonatomic,assign) NSInteger week;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象 *(暂停使用,无效)
 * Query the database, if the query does not initialize a new model object (suspended, invalid)
 * @return IDOGetDeviceTimeBluetoothModel
 */
+ (__kindof IDOGetDeviceTimeBluetoothModel *)currentModel;
@end

#pragma mark ==== 获取实时数据信息model ====
@interface IDOGetLiveDataBluetoothModel:IDOBluetoothBaseModel

/**
 步数 | Step count
 */
@property (nonatomic,assign) NSInteger step;

/**
 卡路里 | Calorie
 */
@property (nonatomic,assign) NSInteger calories;

/**
 距离 | distance
 */
@property (nonatomic,assign) NSInteger distances;

/**
 活动时长 | Duration of activity
 */
@property (nonatomic,assign) NSInteger activeTime;

/**
 心率 | Heart rate
 */
@property (nonatomic,assign) NSInteger heartRate;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetLiveDataBluetoothModel
 */
+ (__kindof IDOGetLiveDataBluetoothModel *)currentModel;

@end

#pragma mark ==== 获取第27个功能表model ====

@interface IDOGetFuncTable27BluetoothModel : IDOBluetoothBaseModel
/**
 * 泰国语
 * thai
 */
@property (nonatomic,assign) BOOL thai;
/**
 * 越南语
 * vietnamese
 */
@property (nonatomic,assign) BOOL vietnamese;
/**
 * 缅甸语
 * burmese
 */
@property (nonatomic,assign) BOOL burmese;
/**
 * 菲律宾语
 * filipino
 */
@property (nonatomic,assign) BOOL filipino;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable27BluetoothModel
 */
+ (__kindof IDOGetFuncTable27BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取第26个功能表model ====

@interface IDOGetFuncTable26BluetoothModel : IDOBluetoothBaseModel
/**
 * 支持恢复出厂设置,用于自动解绑
 * Support to restore factory Settings for automatic untying
 */
@property (nonatomic,assign) BOOL factoryReset;
/**
 * 抬腕亮背光 命令和抬手亮屏一样,就是app显示的名字不一样,不能和other.upHandGesture共存
 * The backlight command of raising wrist light is the same as raising hand light screen,
 * except that the name displayed by app is different and cannot coexist with other.upHandGesture
 */
@property (nonatomic,assign) BOOL liftingWrisBacklight;
/**
 * 多运动不能使用app
 * No app for more exercise
 */
@property (nonatomic,assign) BOOL multiActivityNoUseApp;
/**
 * 多表盘
 * multi dial
 */
@property (nonatomic,assign) BOOL multiDial;
/**
 * 中高强度活动
 * medium to high active duration
 */
@property (nonatomic,assign) BOOL mediumToHighActiveDuration;
/**
 * 获取手环运动模式
 * default sport type
 */
@property (nonatomic,assign) BOOL defaultSportType;
/**
 * 可下载语言
 * download language
 */
@property (nonatomic,assign) BOOL downloadLanguage;
/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable26BluetoothModel
 */
+ (__kindof IDOGetFuncTable26BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取第25个功能表model ====

@interface IDOGetFuncTable25BluetoothModel:IDOBluetoothBaseModel
/**
 椭圆机 | elliptical
 */
@property (nonatomic,assign) BOOL elliptical;
/**
 划船机 | rower
 */
@property (nonatomic,assign) BOOL rower;
/**
 高强度间歇训练法 | High-intensity interval training
 */
@property (nonatomic,assign) BOOL hiit;
/**
 板球运动 | cricket
 */
@property (nonatomic,assign) BOOL cricket;
/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable25BluetoothModel
 */
+ (__kindof IDOGetFuncTable25BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取第24个功能表model ====

@interface IDOGetFuncTable24BluetoothModel:IDOBluetoothBaseModel
/**
 户外跑步 | outdoor run
 */
@property (nonatomic,assign) BOOL outdoorRun;
/**
 室内跑步 | indoor run
 */
@property (nonatomic,assign) BOOL indoorRun;
/**
 户外骑行 | outdoor cycle
 */
@property (nonatomic,assign) BOOL outdoorCycle;
/**
 室内骑行 | indoor cycle
 */
@property (nonatomic,assign) BOOL indoorCycle;
/**
 户外走路 | outdoor walk
 */
@property (nonatomic,assign) BOOL outdoorWalk;
/**
室内走路 | indoor walk
 */
@property (nonatomic,assign) BOOL indoorWalk;
/**
 泳池游泳 | pool swim
 */
@property (nonatomic,assign) BOOL poolSwim;
/**
 开放水域游泳 | open water swim
 */
@property (nonatomic,assign) BOOL openWaterSwim;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable24BluetoothModel
 */
+ (__kindof IDOGetFuncTable24BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取第23个功能表model ====
@interface IDOGetFuncTable23BluetoothModel:IDOBluetoothBaseModel
/**
 5级心率区间 | level 5 hr interval
 */
@property (nonatomic,assign) BOOL level5HrInterval;
/**
 走动提醒 | walk reminder
 */
@property (nonatomic,assign) BOOL walkReminder;
/**
 呼吸训练 | breathe train
 */
@property (nonatomic,assign) BOOL breatheTrain;

/**
 5级亮度调节 | screen brightness 5 level
 */
@property (nonatomic,assign) BOOL screenBrightness5Level;
/**
 运动模式开关 自动识别 | activity switch
 */
@property (nonatomic,assign) BOOL activitySwitch;
/**
 勿扰 支持可选时间范围和星期 | disturb have rang repeat
 */
@property (nonatomic,assign) BOOL disturbHaveRangRepeat;
/**
 夜间自动亮度 | night auto brightness
 */
@property (nonatomic,assign) BOOL nightAutoBrightness;
/**
 传输长包 | long mtu
 */
@property (nonatomic,assign) BOOL longMtu;
/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable23BluetoothModel
 */
+ (__kindof IDOGetFuncTable23BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取22功能列表信息model ====
@interface IDOGetFuncTable22BluetoothModel:IDOBluetoothBaseModel
/**
 连接后自动配对 | auto pair
 */
@property (nonatomic,assign) BOOL autoPair;

/**
 不断线配对 | no disconnect pair
 */
@property (nonatomic,assign) BOOL noDisconnectPair;

/**
 v3 心率数据 | v3 hr data
 */
@property (nonatomic,assign) BOOL v3HrData;

/**
 v3 游泳数据 | v3 swim data
 */
@property (nonatomic,assign) BOOL v3SwimData;

/**
 v3 活动数据 | v3 activity data
 */
@property (nonatomic,assign) BOOL v3ActivityData;

/**
 v3 gps 数据 | v3 gps data
 */
@property (nonatomic,assign) BOOL v3GpsData;

/**
 喝水提醒 | drink water reminder
 */
@property (nonatomic,assign) BOOL drinkWaterReminder;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable22BluetoothModel
 */
+ (__kindof IDOGetFuncTable22BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取21功能列表信息model ====
@interface IDOGetFuncTable21BluetoothModel:IDOBluetoothBaseModel
/**
 chatwork
 */
@property (nonatomic,assign) BOOL chatwork;
/**
 slack
 */
@property (nonatomic,assign) BOOL slack;
/**
 tumblr
 */
@property (nonatomic,assign) BOOL tumblr;
/**
 youtube
 */
@property (nonatomic,assign) BOOL youtube;
/**
 yahoo pinterest
 */
@property (nonatomic,assign) BOOL yahooPinterest;
/**
 yahoo mail
 */
@property (nonatomic,assign) BOOL yahooMail;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable21BluetoothModel
 */
+ (__kindof IDOGetFuncTable21BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取20功能列表信息model ====
@interface IDOGetFuncTable20BluetoothModel:IDOBluetoothBaseModel

/**
 女性生理周期 | Female physiological cycle
 */
@property (nonatomic,assign) BOOL menstruation;

/**
 卡路里目标 | Calorie goal
 */
@property (nonatomic,assign) BOOL calorieGoal;

/**
 距离目标 | Distance target
 */
@property (nonatomic,assign) BOOL distanceGoal;

/**
 血氧数据 | Blood oxygen
 */
@property (nonatomic,assign) BOOL spo2Data;

/**
 压力数据 | pressure data
 */
@property (nonatomic,assign) BOOL pressureData;

/**
 获取勿扰模式 | get do not disturb
 */
@property (nonatomic,assign) BOOL getNoDisturb;

/**
 运动模式排序 | sport mode sort
 */
@property (nonatomic,assign) BOOL sportModeSort;

/**
 通知消息字节250 | notice message 250 byte
 */
@property (nonatomic,assign) BOOL noticeByte;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable20BluetoothModel
 */
+ (__kindof IDOGetFuncTable20BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取19功能列表信息model ====
@interface IDOGetFuncTable19BluetoothModel:IDOBluetoothBaseModel

/**
 gps
 */
@property (nonatomic,assign) BOOL gps;

/**
 睡眠时间段 | Sleep period
 */
@property (nonatomic,assign) BOOL sleepPeriod;

/**
 屏幕亮度调节 |  Screen brightness adjustment
 */
@property (nonatomic,assign) BOOL screenBrightness;

/**
 id107l 表盘 |  Id107l dial
 */
@property (nonatomic,assign) BOOL id107Dial;

/**
 未知 属性 | Unknown attribute
 */
@property (nonatomic,assign) BOOL dhNewAppNotice;

/**
 128字节通知 | 128 byte notification
 */
@property (nonatomic,assign) BOOL noitice128Byte;

/**
 获取时间同步 | Get time synchronization
 */
@property (nonatomic,assign) BOOL activityTimeSync;

/**
 v3 收集 | Collection log
 */
@property (nonatomic,assign) BOOL v3Log;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable19BluetoothModel
 */
+ (__kindof IDOGetFuncTable19BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取18列表信息model ====
@interface IDOGetFuncTable18BluetoothModel:IDOBluetoothBaseModel

/**
 登陆 | login
 */
@property (nonatomic,assign) BOOL logIn;

/**
 手环自带相机拍照 | Bracelet comes with a camera to take pictures
 */
@property (nonatomic,assign) BOOL hidPhoto;

/**
 表盘 | dial
 */
@property (nonatomic,assign) BOOL watchDial;

/**
 快捷方式 | Shortcut
 */
@property (nonatomic,assign) BOOL shortcut;

/**
 单位分开设置 |  Units are set separately
 */
@property (nonatomic,assign) BOOL unitSet;

/**
 血压 | blood pressure
 */
@property (nonatomic,assign) BOOL bloodPressure;

/**
 微信运动 |  WeChat Sport
 */
@property (nonatomic,assign) BOOL wechatSport;

/**
 精细的时间段控制 | Fine time period control
 */
@property (nonatomic,assign) BOOL fineTimeControl;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable18BluetoothModel
 */
+ (__kindof IDOGetFuncTable18BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取17功能列表信息model ====
@interface IDOGetFuncTable17BluetoothModel:IDOBluetoothBaseModel

/**
 高尔夫 | Golf
 */
@property (nonatomic,assign) BOOL golf;

/**
 棒球 | baseball
 */
@property (nonatomic,assign) BOOL baseball;

/**
 滑雪 | ski
 */
@property (nonatomic,assign) BOOL skiing;

/**
 轮滑 | Roller
 */
@property (nonatomic,assign) BOOL rollerSkating;

/**
 跳舞 | dancing
 */
@property (nonatomic,assign) BOOL dance;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable17BluetoothModel
 */
+ (__kindof IDOGetFuncTable17BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取16功能列表信息model ====
@interface IDOGetFuncTable16BluetoothModel:IDOBluetoothBaseModel

/**
 健身操  |  Aerobics
 */
@property (nonatomic,assign) BOOL bodybuildingExercise;

/**
 瑜伽 |  Yoga
 */
@property (nonatomic,assign) BOOL yoga;

/**
 跳绳 |  rope skipping
 */
@property (nonatomic,assign) BOOL ropeSkipping;
/**
 乒乓球 |  pingpong
 */
@property (nonatomic,assign) BOOL tableTennis;

/**
 篮球  | basketball
 */
@property (nonatomic,assign) BOOL basketball;

/**
 足球  | football
 */
@property (nonatomic,assign) BOOL football;

/**
 排球  | volleyball
 */
@property (nonatomic,assign) BOOL volleyball;

/**
 网球 |  tennis
 */
@property (nonatomic,assign) BOOL tennis;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable16BluetoothModel
 */
+ (__kindof IDOGetFuncTable16BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取15功能列表信息model ====
@interface IDOGetFuncTable15BluetoothModel:IDOBluetoothBaseModel

/**
 健身 | Fitness
 */
@property (nonatomic,assign) BOOL fitness;

/**
 动感单车 |  Spinning bike
 */
@property (nonatomic,assign) BOOL spinning;

/**
 椭圆球 | Oval ball
 */
@property (nonatomic,assign) BOOL ellipsoid;

/**
 跑步机 | Treadmill
 */
@property (nonatomic,assign) BOOL treadmill;

/**
 仰卧起坐 |  Sit-ups
 */
@property (nonatomic,assign) BOOL sitUp;

/**
 俯卧撑 | push ups
 */
@property (nonatomic,assign) BOOL pushUp;

/**
 哑铃 | Dumbbell
 */
@property (nonatomic,assign) BOOL dumbbell;

/**
 举重 | weightlifting
 */
@property (nonatomic,assign) BOOL weightlifting;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable15BluetoothModel
 */

+ (__kindof IDOGetFuncTable15BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取14功能列表信息model ====
@interface IDOGetFuncTable14BluetoothModel:IDOBluetoothBaseModel

/**
 走路 | walk
 */
@property (nonatomic,assign) BOOL walk;

/**
 跑步 |  Run
 */
@property (nonatomic,assign) BOOL run;

/**
 骑行 | Riding
 */
@property (nonatomic,assign) BOOL byBike;

/**
 徒步 | on foot
 */
@property (nonatomic,assign) BOOL onFoot;

/**
 游泳 | Swim
 */
@property (nonatomic,assign) BOOL swim;

/**
 爬山 | Mountain climbing
 */
@property (nonatomic,assign) BOOL mountainClimbing;

/**
 羽毛球 | badminton
 */
@property (nonatomic,assign) BOOL badminton;

/**
 其他 | other
 */
@property (nonatomic,assign) BOOL other;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable14BluetoothModel
 */
+ (__kindof IDOGetFuncTable14BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取13功能列表信息model ====
@interface IDOGetFuncTable13BluetoothModel:IDOBluetoothBaseModel

/**
 静态心率 |  Static heart rate
 */
@property (nonatomic,assign) BOOL staticHr;

/**
 防打扰 | Anti-disturbance
 */
@property (nonatomic,assign) BOOL doNotDisturb;

/**
 显示模式 | Display mode
 */
@property (nonatomic,assign) BOOL displayMode;

/**
 心率监测 | Heart rate monitoring
 */
@property (nonatomic,assign) BOOL heartRateMonitor;

/**
 双向防丢 | Two-way anti-lost
 */
@property (nonatomic,assign) BOOL bilateralAntiLost;

/**
 所有通知提醒 | All notification reminders
 */
@property (nonatomic,assign) BOOL allAppNotice;

/**
 不显示心率区间 | Does not show heart rate interval
 */
@property (nonatomic,assign) BOOL noShowHrInterval;

/**
 翻转屏幕 | Flip the screen
 */
@property (nonatomic,assign) BOOL flipScreen;

/**
 *@brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 *@return IDOGetFuncTable13BluetoothModel
 */
+ (__kindof IDOGetFuncTable13BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取12功能列表信息model ====
@interface IDOGetFuncTable12BluetoothModel:IDOBluetoothBaseModel

/**
 提示信息联系人 | Tips Contact
 */
@property (nonatomic,assign) BOOL tipInfoContact;

/**
 提示信息号码 | Message number
 */
@property (nonatomic,assign) BOOL tipInfoNum;

/**
 提醒信息内容 | Reminder content
 */
@property (nonatomic,assign) BOOL tipInfoContent;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable12BluetoothModel
 */
+ (__kindof IDOGetFuncTable12BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取11功能列表信息model ====
@interface IDOGetFuncTable11BluetoothModel:IDOBluetoothBaseModel

/**
 久坐提醒 | Sedentary reminder
 */
@property (nonatomic,assign) BOOL sedentariness;

/**
 防丢提醒 | Anti-lost reminder
 */
@property (nonatomic,assign) BOOL antilost;

/**
 一键呼叫 | One-click calling
 */
@property (nonatomic,assign) BOOL onetouchCalling;

/**
 寻找手机 | Looking for a mobile phone
 */
@property (nonatomic,assign) BOOL findPhone;

/**
 寻找手环 | Looking for a bracelet
 */
@property (nonatomic,assign) BOOL findDevice;

/**
 默认模式 | Default mode
 */
@property (nonatomic,assign) BOOL configDefault;

/**
 手势 | Gestures
 */
@property (nonatomic,assign) BOOL upHandGesture;

/**
 天气预报 | Weather forecast
 */
@property (nonatomic,assign) BOOL weather;

/**
  * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
  * @return IDOGetFuncTable11BluetoothModel
 */
+ (__kindof IDOGetFuncTable11BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取10功能列表信息model ====
@interface IDOGetFuncTable10BluetoothModel:IDOBluetoothBaseModel

/**
 vkontakte
 */
@property (nonatomic,assign) BOOL vkontakte;

/**
 line
 */
@property (nonatomic,assign) BOOL line;

/**
 viber
 */
@property (nonatomic,assign) BOOL viber;

/**
 kakaoTalk
 */
@property (nonatomic,assign) BOOL kakaoTalk;

/**
 gmail
 */
@property (nonatomic,assign) BOOL gmail;

/**
 outlook
 */
@property (nonatomic,assign) BOOL outlook;

/**
 snapchat
 */
@property (nonatomic,assign) BOOL snapchat;

/**
 telegram
 */
@property (nonatomic,assign) BOOL telegram;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable10BluetoothModel
 */
+ (__kindof IDOGetFuncTable10BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取9功能列表信息model ====
@interface IDOGetFuncTable9BluetoothModel:IDOBluetoothBaseModel

/**
 whatsapp
 */
@property (nonatomic,assign) BOOL whatsapp;

/**
 messengre
 */
@property (nonatomic,assign) BOOL messengre;

/**
 instagram
 */
@property (nonatomic,assign) BOOL instagram;

/**
 linkedIn
 */
@property (nonatomic,assign) BOOL linkedIn;

/**
 calendar
 */
@property (nonatomic,assign) BOOL calendar;

/**
 skype
 */
@property (nonatomic,assign) BOOL skype;

/**
 alarmClock
 */
@property (nonatomic,assign) BOOL alarmClock;


/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable9BluetoothModel
 */
+ (__kindof IDOGetFuncTable9BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取8功能列表信息model ====
@interface IDOGetFuncTable8BluetoothModel:IDOBluetoothBaseModel

/**
 短信 | SMS
 */
@property (nonatomic,assign) BOOL message;

/**
 邮件 | Mail
 */
@property (nonatomic,assign) BOOL email;

/**
 qq
 */
@property (nonatomic,assign) BOOL qq;

/**
 微信 | WeChat
 */
@property (nonatomic,assign) BOOL weixin;

/**
 新浪 | Sina
 */
@property (nonatomic,assign) BOOL sinaWeibo;

/**
 facebook
 */
@property (nonatomic,assign) BOOL facebook;

/**
 twitter
 */
@property (nonatomic,assign) BOOL twitter;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable8BluetoothModel
 */
+ (__kindof IDOGetFuncTable8BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取7功能列表信息model ====
@interface IDOGetFuncTable7BluetoothModel:IDOBluetoothBaseModel

/**
 来电提醒 | Call reminder
 */
@property (nonatomic,assign) BOOL calling;

/**
 来电联系人 | Caller contact
 */
@property (nonatomic,assign) BOOL callingContact;

/**
 来电号码 | Caller ID
 */
@property (nonatomic,assign) BOOL callingNum;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable7BluetoothModel
 */
+ (__kindof IDOGetFuncTable7BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取6功能列表信息model ====
@interface IDOGetFuncTable6BluetoothModel:IDOBluetoothBaseModel

/**
 起床 | Get up
 */
@property (nonatomic,assign) BOOL wakeUp;

/**
 睡觉 | Sleeping
 */
@property (nonatomic,assign) BOOL sleep;

/**
 锻炼 | Exercise
 */
@property (nonatomic,assign) BOOL sport;

/**
 吃药 | Taking medicine
 */
@property (nonatomic,assign) BOOL medicine;

/**
 约会 | Dating
 */
@property (nonatomic,assign) BOOL dating;

/**
 聚会 | Party
 */
@property (nonatomic,assign) BOOL party;

/**
 会议 | Meeting
 */
@property (nonatomic,assign) BOOL metting;

/**
 自定义 | Customization
 */
@property (nonatomic,assign) BOOL custom;

/**
 * @brief  查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable6BluetoothModel
 */
+ (__kindof IDOGetFuncTable6BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取5功能列表信息model ====
@interface IDOGetFuncTable5BluetoothModel:IDOBluetoothBaseModel

/**
 拍照 | taking pictures
 */
@property (nonatomic,assign) BOOL takePhoto;

/**
 音乐 | Music
 */
@property (nonatomic,assign) BOOL music;

/**
 控制拍照 | Control photo
 */
@property (nonatomic,assign) BOOL hidPhoto;

/**
 5个心率区间 | 5 heart rate intervals
 */
@property (nonatomic,assign) BOOL fiveHrInterval;

/**
 绑定授权 | Binding Authorization
 */
@property (nonatomic,assign) BOOL bindAuth;

/**
 快速同步 | Quick sync
 */
@property (nonatomic,assign) BOOL fastSync;

/**
 扩展功能 | Extended Features
 */
@property (nonatomic,assign) BOOL exFuncTable;

/**
 绑定码授权 | Binding Code Authorization
 */
@property (nonatomic,assign) BOOL bindCodeAuth;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable5BluetoothModel
 */
+ (__kindof IDOGetFuncTable5BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取4功能列表信息model ====
@interface IDOGetFuncTable4BluetoothModel:IDOBluetoothBaseModel

/**
 步数 | Number of steps
 */
@property (nonatomic,assign) BOOL stepCalculation;

/**
 睡眠检测 | Sleep detection
 */
@property (nonatomic,assign) BOOL sleepMonitor;

/**
 单次运动 | Single movement
 */
@property (nonatomic,assign) BOOL singleSport;

/**
 实时数据 | Real-time data
 */
@property (nonatomic,assign) BOOL realtimeData;

/**
 设备更新 | Equipment Update
 */
@property (nonatomic,assign) BOOL deviceUpdate;

/**
 心率功能 | Heart rate function
 */
@property (nonatomic,assign) BOOL heartRate;

/**
 通知中心 | Notification Center
 */
@property (nonatomic,assign) BOOL ancs;

/**
 时间线 | Timeline
 */
@property (nonatomic,assign) BOOL timeLine;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable4BluetoothModel
 */
+ (__kindof IDOGetFuncTable4BluetoothModel *)currentModel;

@end

#pragma mark ==== 获取3功能列表信息model ====
@interface IDOGetFuncTable3BluetoothModel:IDOBluetoothBaseModel

/**
 斯洛伐克语 | Slovak
 */
@property (nonatomic,assign) BOOL slovak;

/**
 丹麦语 | Danish
 */
@property (nonatomic,assign) BOOL danish;

/**
 克罗地亚语 | Croatian
 */
@property (nonatomic,assign) BOOL croatian;

/**
 印尼语 | Indonesian
 */
@property (nonatomic,assign) BOOL indonesian;

/**
 韩语 | korean
 */
@property (nonatomic,assign) BOOL korean;

/**
 印地语 | hindi
 */
@property (nonatomic,assign) BOOL hindi;

/**
 葡萄牙语 | portuguese
 */
@property (nonatomic,assign) BOOL portuguese;

/**
 土耳其 | turkish
 */
@property (nonatomic,assign) BOOL turkish;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable3BluetoothModel
 */
+ (__kindof IDOGetFuncTable3BluetoothModel *)currentModel;

@end


#pragma mark ==== 获取2功能列表信息model ====
@interface IDOGetFuncTable2BluetoothModel:IDOBluetoothBaseModel

/**
 罗马尼亚文 | Romanian
 */
@property (nonatomic,assign) BOOL romanian;

/**
 立陶宛文 | Lithuanian
 */
@property (nonatomic,assign) BOOL lithuanian;

/**
 荷兰文 | Dutch
 */
@property (nonatomic,assign) BOOL dutch;

/**
 斯洛文尼亚文 | Slovenian
 */
@property (nonatomic,assign) BOOL slovenian;

/**
 匈牙利文 | Hungarian
 */
@property (nonatomic,assign) BOOL hungarian;

/**
 波兰文 | Polish
 */
@property (nonatomic,assign) BOOL polish;

/**
 俄罗斯文 | Russian
 */
@property (nonatomic,assign) BOOL russian;

/**
 乌克兰文 | Ukrainian
 */
@property (nonatomic,assign) BOOL ukrainian;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable2BluetoothModel
 */
+ (__kindof IDOGetFuncTable2BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取1功能列表信息model ====
@interface IDOGetFuncTable1BluetoothModel:IDOBluetoothBaseModel

/**
 中文 | Chinese
 */
@property (nonatomic,assign) BOOL ch;

/**
 英文 | English
 */
@property (nonatomic,assign) BOOL eng;

/**
 法文 | French
 */
@property (nonatomic,assign) BOOL french;

/**
 德文 | German
 */
@property (nonatomic,assign) BOOL german;

/**
 意大利文 | Italian
 */
@property (nonatomic,assign) BOOL italian;

/**
 西班牙文 | Spanish
 */
@property (nonatomic,assign) BOOL spanish;

/**
 日文 | Japanese
 */
@property (nonatomic,assign) BOOL japanese;

/**
 捷克文 | Czech
 */
@property (nonatomic,assign) BOOL czech;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetFuncTable1BluetoothModel
 */
+ (__kindof IDOGetFuncTable1BluetoothModel *)currentModel;
@end

#pragma mark ==== 获取功能列表信息model ====
@interface IDOGetDeviceFuncBluetoothModel:IDOBluetoothBaseModel

/**
 1功能列表 语言1 | 1 func table
 */
@property (nonatomic,strong) IDOGetFuncTable1BluetoothModel       * funcTable1Model;

/**
 2功能列表 语言2 | 2 func table
 */
@property (nonatomic,strong) IDOGetFuncTable2BluetoothModel       * funcTable2Model;

/**
 3功能列表 语言3 | 3 func table
 */
@property (nonatomic,strong) IDOGetFuncTable3BluetoothModel       * funcTable3Model;

/**
 4功能列表 | 4 func table
 */
@property (nonatomic,strong) IDOGetFuncTable4BluetoothModel       * funcTable4Model;

/**
 5功能列表 | 5 func table
 */
@property (nonatomic,strong) IDOGetFuncTable5BluetoothModel       * funcTable5Model;

/**
 6功能列表 闹钟功能 | 6 func table
 */
@property (nonatomic,strong) IDOGetFuncTable6BluetoothModel       * funcTable6Model;

/**
 7功能列表 来电提醒 | 7 func table
 */
@property (nonatomic,strong) IDOGetFuncTable7BluetoothModel       * funcTable7Model;

/**
 8功能列表 智能提醒1 | 8 func table
 */
@property (nonatomic,strong) IDOGetFuncTable8BluetoothModel       * funcTable8Model;

/**
 9功能列表 智能提醒2 | 9 func table
 */
@property (nonatomic,strong) IDOGetFuncTable9BluetoothModel       * funcTable9Model;

/**
 10功能列表 智能提醒3 | 10 func table
 */
@property (nonatomic,strong) IDOGetFuncTable10BluetoothModel      * funcTable10Model;

/**
 11功能列表 久坐、防丢 | 11 func table
 */
@property (nonatomic,strong) IDOGetFuncTable11BluetoothModel      * funcTable11Model;

/**
 12功能列表 短信号码 | 12 func table
 */
@property (nonatomic,strong) IDOGetFuncTable12BluetoothModel      * funcTable12Model;

/**
 13功能列表 静态心率、显示模式 | 13 func table
 */
@property (nonatomic,strong) IDOGetFuncTable13BluetoothModel      * funcTable13Model;

/**
 14功能列表 运动模式1 | 14 func table
 */
@property (nonatomic,strong) IDOGetFuncTable14BluetoothModel      * funcTable14Model;

/**
 15功能列表 运动模式2 | 15 func table
 */
@property (nonatomic,strong) IDOGetFuncTable15BluetoothModel      * funcTable15Model;

/**
 16功能列表 运动模式3 | 16 func table
 */
@property (nonatomic,strong) IDOGetFuncTable16BluetoothModel      * funcTable16Model;

/**
 17功能列表 运动模式4 | 17 func table
 */
@property (nonatomic,strong) IDOGetFuncTable17BluetoothModel      * funcTable17Model;

/**
 18功能列表 表盘、血压 | 18 func table
 */
@property (nonatomic,strong) IDOGetFuncTable18BluetoothModel      * funcTable18Model;

/**
 19功能列表 GPS、亮度 | 19 func table
 */
@property (nonatomic,strong) IDOGetFuncTable19BluetoothModel      * funcTable19Model;

/**
 20功能列表 女性健康、运动排序 | 20 func table
 */
@property (nonatomic,strong) IDOGetFuncTable20BluetoothModel      * funcTable20Model;

/**
 21功能列表 | 21 func table
 */
@property (nonatomic,strong) IDOGetFuncTable21BluetoothModel      * funcTable21Model;

/**
 22功能列表 连接后自动配对、v3数据 | 22 func table
 */
@property (nonatomic,strong) IDOGetFuncTable22BluetoothModel      * funcTable22Model;

/**
 23功能列表 走动提醒、呼吸训练 | 23 func table
 */
@property (nonatomic,strong) IDOGetFuncTable23BluetoothModel      * funcTable23Model;

/**
 24功能列表 运动模式5 | 24 func table
 */
@property (nonatomic,strong) IDOGetFuncTable24BluetoothModel      * funcTable24Model;

/**
 25功能列表 运动模式6 | 25 func table
 */
@property (nonatomic,strong) IDOGetFuncTable25BluetoothModel      * funcTable25Model;

/**
 26功能列表 运动模式6 | 26 func table
 */
@property (nonatomic,strong) IDOGetFuncTable26BluetoothModel      * funcTable26Model;

/**
 27功能列表 语言4 | 27 func table
 */
@property (nonatomic,strong) IDOGetFuncTable27BluetoothModel      * funcTable27Model;

/**
 是否支持版本信息 | version information is supported
 */
@property (nonatomic,assign) BOOL versionInfo;

/**
 闹钟个数 | Number of alarms
 */
@property (nonatomic,assign) NSInteger alarmCount;

/**
 运动显示个数 | Number of sports displays
 */
@property (nonatomic,assign) NSInteger sportShowCount;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetDeviceFuncBluetoothModel
 */
+ (__kindof IDOGetDeviceFuncBluetoothModel *)currentModel;

/**
 * @brief 判断是否有运动模式 | Determine if there are movement patterns
 */
+ (BOOL)isHaveMovment;

@end

#pragma mark ==== 获取设备信息model ====
@interface IDOGetDeviceInfoBluetoothModel:IDOBluetoothBaseModel

/**
 设备模式 | Device mode
 */
@property (nonatomic,assign) NSUInteger mode;

/**
 * 电量状态 (0x0:正常,0x01:正在充电,0x02:充满,0x03:电量低)
 * Battery status (0x0: normal,0x01: charging,0x02: full,0x03: low power)
 */
@property (nonatomic,assign) NSUInteger battStatus;

/**
 电量级别 (0~100)| Battery level
 */
@property (nonatomic,assign) NSUInteger battLevel;

/**
 是否重启 | Whether to restart
 */
@property (nonatomic,assign) NSUInteger rebootFlag;

/**
 绑定时间戳 | Binding timestamp
 */
@property (nonatomic,copy) NSString * bindTimeStr;

/**
 绑定状态 | Binding status
 */
@property (nonatomic,assign) NSInteger bindState;

/**
 * 绑定类型 | Binding type
 * 0x00默认(注意以前ID号定制),超时时间无效,
 * 0x01(单击[按键在下面]),
 * 0x02(为长按[按键在下面]),
 * 0x03(屏幕点击 横向确认和取消,确认在左边),
 * 0x04(屏幕点击 横向确认和取消,确认在右边),
 * 0x05(屏幕点击 竖向确认和取消,确认在上边),
 * 0x06(屏幕点击 竖向确认和取消,确认在下边),
 * 0x07点击(右边一个按键))
 */
@property (nonatomic,assign) NSInteger bindType;

/**
 * 绑定超时 | Binding timeout
 * 最长为15秒,0表示不超时
 */
@property (nonatomic,assign) NSInteger bindTimeout;

/**
 * 手环的平台 | platform for bracelet
 * 0:nordic, 10:realtek 8762x ,20:cypress psoc6,30:Apollo3
 */
@property (nonatomic,assign) NSInteger platform;

/**
 * 手环是否同步过配置 | is sync config
 *
 */
@property (nonatomic,assign) BOOL isSyncConfig;

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetDeviceInfoBluetoothModel
 */
+ (__kindof IDOGetDeviceInfoBluetoothModel *)currentModel;

/**
 * @brief 查询本地所有设备信息(不包括Mac地址不存在的设备)
 * Query all local device information (excluding devices where Mac addresses do not exist)
 * @return IDOGetDeviceInfoBluetoothModel array
 */
+ (NSArray <__kindof IDOGetDeviceInfoBluetoothModel *>*)queryAllDeviceModels;

@end

#pragma mark ==== 获取mac地址model ====
@interface IDOGetMacAddrInfoBluetoothModel:IDOBluetoothBaseModel

/**
 * @brief 查询数据库,如果查询不到初始化新的model对象
 * Query the database, if the query does not initialize a new model object
 * @return IDOGetMacAddrInfoBluetoothModel
 */
+ (__kindof IDOGetMacAddrInfoBluetoothModel *)currentModel;
@end

@interface IDOGetInfoBluetoothModel : IDOBluetoothBaseModel

@end