87 lines
2.4 KiB
C
87 lines
2.4 KiB
C
|
|
//
|
|||
|
|
// QXFamilyModel.h
|
|||
|
|
// QXLive
|
|||
|
|
//
|
|||
|
|
// Created by 启星 on 2025/11/27.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <Foundation/Foundation.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
@class QXFamilyMemberModel;
|
|||
|
|
@interface QXFamilyModel : NSObject
|
|||
|
|
/// 群组id
|
|||
|
|
@property(nonatomic,strong)NSString *group_id;
|
|||
|
|
/// 家族名称
|
|||
|
|
@property(nonatomic,strong)NSString *name;
|
|||
|
|
/// 族长id(群主id)
|
|||
|
|
@property(nonatomic,strong)NSString *user_id;
|
|||
|
|
/// 签约次数(群组人数)
|
|||
|
|
@property(nonatomic,strong)NSString *group_members_num;
|
|||
|
|
/// 总计收益
|
|||
|
|
@property(nonatomic,strong)NSString *group_earnings;
|
|||
|
|
/// 族长信息
|
|||
|
|
@property(nonatomic,strong)QXUserModel *group_owner_info;
|
|||
|
|
/// 家族成员
|
|||
|
|
@property(nonatomic,strong)NSArray<QXFamilyMemberModel*> *group_members_lists;
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
|
|||
|
|
@interface QXFamilyMemberModel : NSObject
|
|||
|
|
/// 身价
|
|||
|
|
@property(nonatomic,strong)NSString *market_value;
|
|||
|
|
/// 0 离线 1 在线
|
|||
|
|
@property(nonatomic,assign)NSInteger is_online;
|
|||
|
|
/// 昵称
|
|||
|
|
@property(nonatomic,strong)NSString *nickname;
|
|||
|
|
/// 头像
|
|||
|
|
@property(nonatomic,strong)NSString *avatar;
|
|||
|
|
/// 用户code
|
|||
|
|
@property(nonatomic,strong)NSString *user_code;
|
|||
|
|
/// 用户id
|
|||
|
|
@property(nonatomic,strong)NSString *user_id;
|
|||
|
|
/// 剩余多少天
|
|||
|
|
@property(nonatomic,strong)NSString *end_time;
|
|||
|
|
/// 剩余多少天
|
|||
|
|
@property(nonatomic,strong)NSString *end_day;
|
|||
|
|
/// 头像框
|
|||
|
|
@property(nonatomic,strong)NSString *dress;
|
|||
|
|
/// 头像框
|
|||
|
|
@property(nonatomic,strong)NSArray *icon;
|
|||
|
|
/// 麦圈
|
|||
|
|
@property(nonatomic,strong)NSString *mic_cycle;
|
|||
|
|
/// 爵位
|
|||
|
|
@property(nonatomic,strong)NSString *nobility_image;
|
|||
|
|
/// 昵称颜色
|
|||
|
|
@property(nonatomic,strong)NSString *nickname_color;
|
|||
|
|
/// 免费续签次数
|
|||
|
|
@property(nonatomic,strong)NSString *free_renewal;
|
|||
|
|
/// 今日收礼收益
|
|||
|
|
@property(nonatomic,strong)NSString *today_earnings;
|
|||
|
|
/// 昨日收礼收益
|
|||
|
|
@property(nonatomic,strong)NSString *yesterday_earnings;
|
|||
|
|
/// 是否显示续约按钮 1:显示 0:不显示
|
|||
|
|
@property(nonatomic,strong)NSString *is_show_sign;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
@interface QXFamilyEarningModel : NSObject
|
|||
|
|
/// 列表 id
|
|||
|
|
@property(nonatomic,strong)NSString *id;
|
|||
|
|
/// 用户昵称
|
|||
|
|
@property(nonatomic,strong)NSString *nickname;
|
|||
|
|
/// 头像
|
|||
|
|
@property(nonatomic,strong)NSString *avatar;
|
|||
|
|
/// 用户code
|
|||
|
|
@property(nonatomic,strong)NSString *user_code;
|
|||
|
|
/// 收益
|
|||
|
|
@property(nonatomic,strong)NSString *earnings;
|
|||
|
|
/// 时间
|
|||
|
|
@property(nonatomic,strong)NSString *createtime;
|
|||
|
|
/// 礼物名称
|
|||
|
|
@property(nonatomic,strong)NSString *gift_name;
|
|||
|
|
/// 礼物价格
|
|||
|
|
@property(nonatomic,strong)NSString *gift_price;
|
|||
|
|
@end
|
|||
|
|
NS_ASSUME_NONNULL_END
|