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

37 lines
903 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.

//
// XPMineExchangeAuthorityModel.h
// YuMi
//
// Created by YuMi on 2023/2/13.
//
#import <Foundation/Foundation.h>
#import "UserLevelVo.h"
#import "YUMINNNN.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMineExchangeAuthorityModel : PIBaseModel
///用户id
@property (nonatomic,copy) NSString *uid;
///头像
@property (nonatomic,copy) NSString *avatar;
///成员平台号
@property (nonatomic,assign) NSInteger erbanNo;
///兑换权限 0=关闭1=开启
@property (nonatomic,assign) BOOL exchangeAuthStatus;
///性别
@property (nonatomic,assign) GenderType gender;
///生日
@property(nonatomic,assign) long birth;
///金币数量
@property (nonatomic,assign) double golds;
///所属公会名称
@property (nonatomic,copy) NSString *hallName;
///昵称
@property (nonatomic,copy) NSString *nick;
///用户等级
@property (nonatomic , strong) UserLevelVo * userLevelVo;
@end
NS_ASSUME_NONNULL_END