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

52 lines
1.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.

//
// 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