// // RDSMemberModel.h // Temperature // // Created by RD on 2022/11/30. // #import "FFDataBaseModel.h" NS_ASSUME_NONNULL_BEGIN /// 家庭成员 @interface RDSMemberModel : FFDataBaseModel @property (nonatomic, assign) int is_default; @property (nonatomic, strong) NSString *record_id; @property (nonatomic, strong) NSString *home_id; @property (nonatomic, strong) NSString *user_id; @property (nonatomic, strong) NSString *user_name; @property (nonatomic, strong) NSString *real_name; @property (nonatomic, strong) NSString *phone; @property (nonatomic, strong) NSString *creator; @property (nonatomic, strong) NSString *photo; @end NS_ASSUME_NONNULL_END