更换项目

This commit is contained in:
liyuhua
2023-07-14 18:50:55 +08:00
parent fff67e0aee
commit fc0480ea2c
9340 changed files with 236665 additions and 221827 deletions

View File

@@ -0,0 +1,51 @@
//
// XPMineGuildListModel.h
// YuMi
//
// Created by YuMi on 2023/6/30.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPMineGuildListModel : NSObject
///公会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