
- 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
55 lines
1.4 KiB
Objective-C
55 lines
1.4 KiB
Objective-C
//
|
||
// 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
|