房间完成

This commit is contained in:
启星
2025-12-01 18:42:49 +08:00
parent 7eb4f8d3b8
commit 2d37ab6844
55 changed files with 653 additions and 41 deletions

View File

@@ -63,6 +63,12 @@ NS_ASSUME_NONNULL_BEGIN
@property(nonatomic,strong)NSString *yesterday_earnings;
/// 是否显示续约按钮 1显示 0不显示
@property(nonatomic,strong)NSString *is_show_sign;
/// 续约身价的百分比
@property(nonatomic,strong)NSString *sign_user_ratio;
/// 续约时长
@property(nonatomic,strong)NSString *sign_times;
/// 续约免费时长
@property(nonatomic,strong)NSString *free_re_sign_day;
@end
@interface QXFamilyEarningModel : NSObject

View File

@@ -130,6 +130,8 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic,strong)QXUserCpInfoModel *cp_info;
@property (nonatomic,strong)QXUserHomeModel *master;
-(instancetype)copyModel;
@end
@@ -216,6 +218,8 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic,strong)QXUserCpInfoModel *cp_info;
@property (nonatomic,strong)QXUserHomeModel *master;
//@property (nonatomic,strong)QXRelationshipListModel *qinmi;
//@property (nonatomic,strong)QXRelationshipListModel *zhenai;
@end

View File

@@ -18,7 +18,8 @@
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
return @{
@"tag_list" : @"QXUserTag",
@"cp_info": @"QXUserCpInfoModel"
@"cp_info": @"QXUserCpInfoModel",
@"master": @"QXUserHomeModel",
};
}
@@ -61,7 +62,8 @@
return @{
// @"qinmi" : @"QXRelationshipListModel",
// @"zhenai" : @"QXRelationshipListModel"
@"cp_info": @"QXUserCpInfoModel"
@"cp_info": @"QXUserCpInfoModel",
@"master": @"QXUserHomeModel",
};
}