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.
53 lines
1.1 KiB
53 lines
1.1 KiB
// |
|
// ContactsModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/11/28. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface ContactsModel : BaseModel |
|
|
|
/// 添加方式(0:通讯录导入 1:手动添加) |
|
@property (nonatomic ,assign) NSInteger addMethod; |
|
|
|
/// 时间 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// Id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// 用户身份(0:游客,1:普通用户(关注的人),2:管理员) |
|
@property (nonatomic ,assign) NSInteger identity; |
|
|
|
/// 关系头像文件名id |
|
@property (nonatomic ,assign) NSInteger image; |
|
|
|
/// 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// 联系人名字 |
|
@property (nonatomic ,copy) NSString *name; |
|
|
|
/// 联系人号码 |
|
@property (nonatomic ,copy) NSString *phone; |
|
|
|
/// 与孩子关系 |
|
@property (nonatomic ,copy) NSString *relation; |
|
|
|
/// 是否绑定设备(0:未绑定,1已绑定) |
|
@property (nonatomic ,assign) NSInteger setBind; |
|
|
|
@property (nonatomic ,copy) NSString *openId; |
|
|
|
/** |
|
是否选中 |
|
*/ |
|
@property (nonatomic ,assign) BOOL isSelect; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|