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
This commit is contained in:
32
YuMi/Structure/MVP/Model/UserLevelVo.h
Normal file
32
YuMi/Structure/MVP/Model/UserLevelVo.h
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// UserLevelVo.h
|
||||
// YUMI
|
||||
//
|
||||
// Created by zu on 2021/9/14.
|
||||
//
|
||||
|
||||
#import "NSObject+MJExtension.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
typedef NS_ENUM(NSInteger, UserLevelType) {
|
||||
UserLevelType_Common = 1,///普通人
|
||||
UserLevelType_Offical = 2,///官方
|
||||
UserLevelType_Robot = 3, ///机器人
|
||||
};
|
||||
|
||||
@interface UserLevelVo : PIBaseModel
|
||||
@property (nonatomic , copy) NSString * experUrl;
|
||||
@property (nonatomic , assign) NSInteger charmLevelSeq;
|
||||
@property (nonatomic , copy) NSString * experLevelName;
|
||||
@property (nonatomic , copy) NSString * charmLevelName;
|
||||
@property (nonatomic , assign) NSInteger charmAmount;
|
||||
@property (nonatomic , copy) NSString * experLevelGrp;
|
||||
@property (nonatomic , copy) NSString * charmUrl;
|
||||
@property (nonatomic , assign) NSInteger experLevelSeq;
|
||||
@property (nonatomic , assign) NSInteger experAmount;
|
||||
@property (nonatomic , copy) NSString * charmLevelGrp;
|
||||
///账号类型
|
||||
@property(nonatomic, assign) UserLevelType defUser; //账号类型
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user