// // 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