Files
peko-ios/YuMi/Modules/YMMine/View/Guild/Model/GuildSearchUserInfoModel.h
2023-11-15 17:25:09 +08:00

34 lines
911 B
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.

//
// GuildSearchUserInfoModel.h
// YuMi
//
// Created by YuMi on 2022/4/8.
// 搜索平台成员
#import <Foundation/Foundation.h>
#import "YUMINNNN.h"
NS_ASSUME_NONNULL_BEGIN
@interface GuildSearchUserInfoModel : PIBaseModel
///用户的uid
@property (nonatomic,copy) NSString *uid;
///生日
@property(nonatomic,assign) long birth;
///头像
@property (nonatomic,copy) NSString *avatar;
///昵称
@property (nonatomic,copy) NSString *nick;
///性别
@property (nonatomic,assign) GenderType gender;
///平台号
@property (nonatomic,copy) NSString *erbanNo;
///按钮状态 0=不显示4=可邀请5=待通过6=通过申请
@property (nonatomic,assign) int hallBtnStatus;
/// integer($int64)当 hallBtnStatus=6 时对应的申请记录Id
@property (nonatomic,assign) NSInteger hallRecordId;
///公会会话id
@property (nonatomic,copy) NSString *hallMessageUid;
@end
NS_ASSUME_NONNULL_END