Files
real-e-party-iOS/YuMi/Structure/MVP/Model/RelationUserVO.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

55 lines
1.4 KiB
Objective-C
Raw Permalink 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.

//
// RelationUserVO.h
// YuMi
//
// Created by P on 2024/9/19.
//
#import "PIBaseModel.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, CP_TYPE) {
CP_TYPE_CP = 1,
CP_TYPE_BRO,
CP_TYPE_SISTER,
CP_TYPE_FRIEND
};
typedef NS_ENUM(NSUInteger, CP_CLICK_TYPE) {
CP_CLICK_TYPE_DEFAULT = 0,
CP_CLICK_TYPE_SENDING,
CP_CLICK_TYPE_PASSED
};
@interface RelationUserVO : PIBaseModel
@property (nonatomic, assign) BOOL showCpAvatar;
@property (nonatomic, assign) BOOL showCpAnim;
@property (nonatomic, copy) NSString *nick;
@property (nonatomic, copy) NSString *avatar;
@property (nonatomic, copy) NSString *cpNick;
@property (nonatomic, copy) NSString *cpAvatar;
@property (nonatomic, assign) NSInteger uid;
@property (nonatomic, assign) NSInteger cpUid;
@property (nonatomic, assign) NSInteger cpDay;
@property (nonatomic, assign) NSInteger cpLevel;
@property (nonatomic, assign) NSInteger maxCpLevel;
@property (nonatomic, assign) NSInteger currentExp;
@property (nonatomic, assign) NSInteger nextLevelExp;
@property (nonatomic, assign) NSInteger cancelGoldNum;
@property (nonatomic, assign) NSInteger endExp;
@property (nonatomic, assign) NSInteger startExp;
@property (nonatomic, assign) CP_TYPE relationNameType;
@property (nonatomic, assign) CP_CLICK_TYPE clickFlag; //默认状态0,1-您已经提交更换申请请耐心等待。2-你需要30天才能更换状态。
- (BOOL)isEmptyRelation;
@end
NS_ASSUME_NONNULL_END