Files
peko-ios/YuMi/Modules/YMRoom/View/MessageContainerView/Model/XPMessageRemoteExtModel.h
liyuhua c670d7be6d 优化
2024-01-03 18:18:42 +08:00

74 lines
2.4 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// YMMessageRepoteExtModel.h
// YUMI
//
// Created by YUMI on 2021/10/27.
// 解析message 的扩展的模型
#import "NSObject+MJExtension.h"
#import "UserLevelVo.h"
#import "YUMINNNN.h"
#import "UserVipInfoVo.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMessageRemoteExtModel : PIBaseModel
@property (nonatomic , strong) UserLevelVo * userLevelVo;
///贵族信息
@property (nonatomic, strong) UserVipInfoVo *userVipInfoVO;
///魅力等级
@property (nonatomic,copy) NSString *charmUrl;
@property (nonatomic,assign) NSInteger erbanNo;
///经验等级
@property (nonatomic,copy) NSString *experUrl;
///账号的类型
@property(nonatomic, assign) UserLevelType defUser;
///是否是新用户
@property (nonatomic,assign) BOOL newUser;
///是否是靓号
@property (nonatomic,assign) BOOL hasPrettyErbanNo;
///是否是官方 安卓是这样用的 写上吧
@property (nonatomic,assign) BOOL official;
///座驾名称
@property (nonatomic,copy) NSString *carName;
///等级编号
@property (nonatomic,assign) NSInteger experLevelSeq;
///跟随的
@property (nonatomic,copy) NSString *fromNick;
@property (nonatomic,assign) UserEnterRoomFromType fromType;
@property (nonatomic,copy) NSString *fromUid;
@property(nonatomic,copy) NSString *uid;
///名牌的
@property (nonatomic,copy) NSString *inRoomNameplatePic;
///铭牌的字
@property (nonatomic,copy) NSString *inRoomNameplateWord;
///贵族icon
@property (nonatomic, copy) NSString *vipIcon;
///安卓房间公屏气泡
@property (nonatomic, copy) NSString *androidBubbleUrl;
///iOS房间公屏气泡
@property (nonatomic, copy) NSString *iosBubbleUrl;
///是否隐身进房 0不隐身1隐身
@property (nonatomic, assign) BOOL enterHide;
///是否防被踢
@property (nonatomic, assign) BOOL preventKick;
///进房特效
@property (nonatomic, copy) NSString *enterRoomEffects;
///性别
@property (nonatomic, assign) GenderType gender;
///是否符合渠道打招呼
@property (nonatomic,assign) BOOL fromSayHelloChannel;
/// 0 普通 1超管
@property (nonatomic,assign) NSInteger platformRole;
@property(nonatomic,copy) NSString *avatar;
@property(nonatomic,copy) NSString *nick;
@property(nonatomic,assign) BOOL inMic;
@property(nonatomic,copy) NSString *memberType;
///铭牌,
@property(nonatomic,copy) NSString *nameplatePic;
@property(nonatomic,copy) NSString *nameplateWord;
///是否自定义铭牌,
@property(nonatomic,assign) BOOL isCustomWord;
@end
NS_ASSUME_NONNULL_END