Files
real-e-party-iOS/YuMi/Modules/YMMine/Model/ExchangeAuthority/XPMineExchangeAuthorityModel.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +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