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.
50 lines
1.1 KiB
50 lines
1.1 KiB
![]()
2 years ago
|
//
|
||
|
// SOSModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/12/6.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface SOSModel : BaseModel
|
||
|
|
||
|
/// string($date-time)创建时间
|
||
|
@property (nonatomic ,copy) NSString *createTime;
|
||
|
|
||
|
/// string创建人
|
||
|
@property (nonatomic ,copy) NSString *createUser;
|
||
|
|
||
|
/// string 是否删除(0.是,1.否.默认1)
|
||
|
@property (nonatomic ,assign) NSInteger delFlag;
|
||
|
|
||
|
/// string 设备imei号
|
||
|
@property (nonatomic ,copy) NSString *imei;
|
||
|
|
||
|
/// string id,编辑必传
|
||
|
@property (nonatomic ,copy) NSString *imeiSosId;
|
||
|
|
||
|
/// string SOS号码1
|
||
|
@property (nonatomic ,copy) NSString *sosPhoneOne;
|
||
|
|
||
|
/// string SOS号码3
|
||
|
@property (nonatomic ,copy) NSString *sosPhoneThree;
|
||
|
|
||
|
/// string SOS号码2
|
||
|
@property (nonatomic ,copy) NSString *sosPhoneTwo;
|
||
|
|
||
|
/// string (来源,1.PC 2.APP)
|
||
|
@property (nonatomic ,copy) NSString *source;
|
||
|
|
||
|
/// string($date-time) 修改时间
|
||
|
@property (nonatomic ,copy) NSString *updateTime;
|
||
|
|
||
|
/// string 修改人
|
||
|
@property (nonatomic ,copy) NSString *updateUser;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|