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.
144 lines
4.0 KiB
144 lines
4.0 KiB
// |
|
// DeviceModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/10/14. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface DeviceModel : BaseModel |
|
|
|
/// string 设备拥有者生日 |
|
@property (nonatomic ,copy) NSString *birthday; |
|
|
|
/// string 血氧(0.不支持,1.支持 |
|
@property (nonatomic ,assign) BOOL bloodOxygen; |
|
|
|
/// string 血压(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL bloodPressure; |
|
|
|
/// string 微聊功能(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL chatFun; |
|
|
|
/// string 上课禁用(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL classDisable; |
|
|
|
/// string 设备型号名称 |
|
@property (nonatomic ,copy) NSString *deviceModelName; |
|
|
|
/// integer($int32) 设备类型 |
|
@property (nonatomic ,assign) NSInteger deviceType; |
|
|
|
/// string 拨号盘(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL dial; |
|
|
|
/// 拨号盘开关(默认0,1 (打开) 或 0 (关闭)) |
|
@property (nonatomic ,assign) BOOL dialSwitch; |
|
|
|
/// string 电子围栏(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL electronicFence; |
|
|
|
/// string 亲情号(0.不支持,1.支持)默认支持) |
|
@property (nonatomic ,assign) BOOL familyPhone; |
|
|
|
/// string 所在群组id |
|
@property (nonatomic ,copy) NSString *groupid; |
|
|
|
/// string 心率(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL heartRate; |
|
|
|
/// string 设备拥有者身高 |
|
@property (nonatomic ,copy) NSString *height; |
|
|
|
/// string 是否是管理员(默认0:游客,1:普通用户(关注的人),2:管理员,3.导入联系人) |
|
@property (nonatomic ,assign) NSInteger identity; |
|
|
|
/// string 头像 |
|
@property (nonatomic ,copy) NSString *image; |
|
|
|
/// string 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// string 查找设备功能(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL lookupFun; |
|
|
|
/// string 姓名 |
|
@property (nonatomic ,copy) NSString *name; |
|
|
|
/// string 设备手机号码 |
|
@property (nonatomic ,copy) NSString *phone; |
|
|
|
/// string 打电话(0:不支持,1:支持) |
|
@property (nonatomic ,assign) BOOL phoneCall; |
|
|
|
/// string 性别(1:男,0:女) |
|
@property (nonatomic ,assign) NSInteger sex; |
|
|
|
/// string SOS号码(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL sosPhone; |
|
|
|
/// string 记步功能(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL stepRecorder; |
|
|
|
/// string 电信版本号(0,否,1.是) |
|
@property (nonatomic ,assign) BOOL telecomVersion; |
|
|
|
/// string 体温(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL temperature; |
|
|
|
/// string 定时开关机(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL timingSwitch; |
|
|
|
/// string 视频类型名称(0.不支持,1.菊风,2.声网,3.佰锐,4.鹈鹕) |
|
@property (nonatomic ,assign) NSInteger videoModelName; |
|
|
|
/// string 学生证闹钟(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL watchAlarmClock; |
|
|
|
/// string 学生证WIFF(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL watchWiff; |
|
|
|
/// string 设备拥有者体重 |
|
@property (nonatomic ,copy) NSString *weight; |
|
|
|
/// string 白名单(0.不支持,1.支持) |
|
@property (nonatomic ,assign) BOOL whiteList; |
|
|
|
/// string 光感(0.关闭,1.开启) |
|
@property (nonatomic ,assign) BOOL photoreceptorStatus; |
|
|
|
/// 定位模式间隔时间(分钟) |
|
@property (nonatomic ,assign) NSInteger positioningInterval; |
|
|
|
/// 定位模式ID |
|
@property (nonatomic ,copy) NSString *positioningModelId; |
|
|
|
/// (定位模式等級(1,2,3)) |
|
@property (nonatomic ,assign) NSInteger positioningModelLevel; |
|
|
|
/// 是否拒绝陌生人来电(默认为0,(0.否,1.是) |
|
@property (nonatomic ,assign) BOOL rejectStrange; |
|
|
|
/// 视频聊天appkey |
|
@property (nonatomic ,copy) NSString *appKey; |
|
|
|
/// 佰瑞Id |
|
@property (nonatomic ,copy) NSString *baiRuiId; |
|
|
|
/// 是否是零售 |
|
@property (nonatomic ,assign) BOOL virtualFlag; |
|
|
|
/// 年级 |
|
@property (nonatomic ,copy) NSString *gradeName; |
|
|
|
/// 班级 |
|
@property (nonatomic ,copy) NSString *className; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|