52 lines
1.4 KiB
Objective-C
52 lines
1.4 KiB
Objective-C
//
|
||
// XPMineGuildListModel.h
|
||
// YuMi
|
||
//
|
||
// Created by YuMi on 2023/6/30.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface XPMineGuildListModel : PIBaseModel
|
||
///公会id
|
||
@property (nonatomic,assign) NSInteger clanId;
|
||
///公会长id
|
||
@property (nonatomic,assign) NSInteger clanElderUid;
|
||
/// 公会头像
|
||
@property (nonatomic,copy) NSString *avatar;
|
||
/// 公会收入
|
||
@property (nonatomic,assign) NSInteger income;
|
||
///公会等级
|
||
@property (nonatomic,assign) NSInteger level;
|
||
///公会名
|
||
@property (nonatomic,copy) NSString *name;
|
||
///公会等级图标
|
||
@property (nonatomic,copy) NSString *levelIcon;
|
||
///0=不显示 1=可申请 2=已申请
|
||
@property (nonatomic,assign) int applyBtnStatus;
|
||
///按钮状态 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;
|
||
///
|
||
@property (nonatomic,assign) NSInteger recordId;
|
||
|
||
/*房间*/
|
||
|
||
///房间id
|
||
@property (nonatomic,assign) NSInteger hallId;
|
||
|
||
/// 房间头像
|
||
@property (nonatomic,copy) NSString *ownerAvatar;
|
||
@property (nonatomic,assign) NSInteger ownerUid;
|
||
@property (nonatomic,assign) NSInteger ownerErbanNo;
|
||
///房间名
|
||
@property (nonatomic,copy) NSString *hallName;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|