|
|
|
//
|
|
|
|
// RemindModel.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2022/12/29.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseModel.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@class ContextModel;
|
|
|
|
@interface RemindModel : BaseModel
|
|
|
|
|
|
|
|
/// string example: 地址
|
|
|
|
@property (nonatomic ,copy) NSString *address;
|
|
|
|
|
|
|
|
/// string
|
|
|
|
@property (nonatomic ,copy) NSString *battery;
|
|
|
|
|
|
|
|
/// string example: 内容
|
|
|
|
@property (nonatomic ,copy) NSString *context;
|
|
|
|
|
|
|
|
/// string($date-time) example: 创建时间
|
|
|
|
@property (nonatomic ,copy) NSString *createTime;
|
|
|
|
|
|
|
|
/// string example: id
|
|
|
|
@property (nonatomic ,copy) NSString *Id;
|
|
|
|
|
|
|
|
/// string example: 设备imei
|
|
|
|
@property (nonatomic ,copy) NSString *imei;
|
|
|
|
|
|
|
|
/// string example: 纬度
|
|
|
|
@property (nonatomic ,copy) NSString *lat;
|
|
|
|
|
|
|
|
/// string example: 定位类型
|
|
|
|
@property (nonatomic ,copy) NSString *loc_type;
|
|
|
|
|
|
|
|
/// string example: 经度
|
|
|
|
@property (nonatomic ,copy) NSString *lon;
|
|
|
|
|
|
|
|
/// string example: 是否已读(0.未读,1.已读)
|
|
|
|
@property (nonatomic ,copy) NSString *messageRead;
|
|
|
|
|
|
|
|
/// string example: 报警信息内容
|
|
|
|
@property (nonatomic ,copy) NSString *msgContent;
|
|
|
|
|
|
|
|
/// string example: 设备名称
|
|
|
|
@property (nonatomic ,copy) NSString *name;
|
|
|
|
|
|
|
|
/// string example: 提醒类型(1:安全围栏,2:低电信息,3:sos)
|
|
|
|
@property (nonatomic ,copy) NSString *remindType;
|
|
|
|
|
|
|
|
/// integer($int64) example: 定位类型
|
|
|
|
@property (nonatomic ,copy) NSString *timestamp;
|
|
|
|
|
|
|
|
/// string example: 类型
|
|
|
|
@property (nonatomic ,copy) NSString *type;
|
|
|
|
|
|
|
|
/// string($date-time) example: 更新时间
|
|
|
|
@property (nonatomic ,copy) NSString *updateTime;
|
|
|
|
|
|
|
|
/// string example: 推送人的ID
|
|
|
|
@property (nonatomic ,copy) NSString *userId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
是否选中
|
|
|
|
*/
|
|
|
|
@property (assign ,nonatomic) BOOL isSelect;
|
|
|
|
|
|
|
|
/// 分组时间对比
|
|
|
|
@property (nonatomic ,copy) NSString *time;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|