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.
35 lines
639 B
35 lines
639 B
![]()
2 years ago
|
//
|
||
|
// FamilyModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2023/6/16.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface FamilyModel : BaseModel
|
||
|
|
||
|
/// string($date-time) 创建时间
|
||
|
@property (nonatomic ,copy) NSString *createTime;
|
||
|
|
||
|
/// string 主键Id
|
||
|
@property (nonatomic ,copy) NSString *Id;
|
||
|
|
||
|
/// string imei
|
||
|
@property (nonatomic ,copy) NSString *imei;
|
||
|
|
||
|
/// string 昵称
|
||
|
@property (nonatomic ,copy) NSString *name;
|
||
|
|
||
|
/// string 亲情号对应的数字按键
|
||
|
@property (nonatomic ,copy) NSString *number;
|
||
|
|
||
|
/// string 亲情号
|
||
|
@property (nonatomic ,copy) NSString *phone;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|