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.
29 lines
560 B
29 lines
560 B
![]()
2 years ago
|
//
|
||
|
// MemberModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2023/1/13.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface MemberModel : BaseModel
|
||
|
|
||
|
/// string example: 手机号
|
||
|
@property (nonatomic ,copy) NSString *phone;
|
||
|
|
||
|
/// string example: 与孩子关系
|
||
|
@property (nonatomic ,copy) NSString *relationShip;
|
||
|
|
||
|
/// integer($int32) example: 与孩子关系头像id
|
||
|
@property (nonatomic ,assign) NSInteger relationShipImageId;
|
||
|
|
||
|
/// 本地使用,加减图片
|
||
|
@property (nonatomic ,copy) NSString *imgName;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|