
- 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
59 lines
2.0 KiB
Objective-C
59 lines
2.0 KiB
Objective-C
//
|
|
// YMMineItemModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
typedef NS_ENUM(NSInteger, XPMineItemType) {
|
|
XPMineItemType_Match_Relevance_Account = 2, ///跳转url (关联账号,实名认证, 邀请好友)
|
|
XPMineItemType_Match_Apply_Record, ///报名记录
|
|
XPMineItemType_Match_Bonus,///奖金
|
|
XPMineItemType_Match_Standings, ///战绩
|
|
XPMineItemType_Match_Card_Bag, ///卡包
|
|
XPMineItemType_Match_Shopping, ///商城
|
|
XPMineItemType_Account,///我的账户
|
|
XPMineItemType_PersonInfo,///个人中心
|
|
XPMineItemType_Attention_List,///关注列表
|
|
XPMineItemType_Foot_Print, ///足迹、进房记录
|
|
XPMineItemType_Fans_List,///粉丝列表
|
|
XPMineItemType_Noble_Center,///VIP中心
|
|
XPMineItemType_Skill_Card, ///技能卡
|
|
XPMineItemType_My_Room = 64, ///我的房间
|
|
XPMineItemType_Collect_Room = 65, ///收藏房间
|
|
XPMineItemType_My_Guild = 67,///我的公会
|
|
XPMineItemType_Teenager_Mode = 68, ///青少年模式
|
|
XPMineItemType_Match_Manage = 69, ///赛程管理
|
|
XPMineItemType_Visitor = 70,///访客记录
|
|
XPMineItemType_CP = 71,///cp关系
|
|
XPMineItemType_FansTeam = 72,///粉丝团
|
|
XPMineItemType_DressUp_Market = 73, ///装扮商场
|
|
XPMineItemType_My_DressUp = 74,///我的装扮
|
|
XPMineItemType_My_Setting = 75,///设置
|
|
XPMineItemType_My_Gift = 77,///我的转赠
|
|
XPMineItemType_My_Game_Order = 78,///我的陪玩點單
|
|
XPMineItemType_My_Item = 79,///我的已购装扮
|
|
XPMineItemType_My_Agent = 80,///我的工会
|
|
XPMineItemType_My_Medal = 81,///我的勋章
|
|
};
|
|
|
|
|
|
@interface XPMineItemModel : PIBaseModel
|
|
///图片的名字
|
|
@property (nonatomic,copy) NSString *itemImageName;
|
|
///名字
|
|
@property (nonatomic,copy) NSString *itemName;
|
|
///跳转类型
|
|
@property (nonatomic,assign) XPMineItemType type;
|
|
///圆角
|
|
@property (nonatomic, assign) UIRectCorner cornerType;
|
|
///未读消息
|
|
@property (nonatomic, assign) NSInteger unReadCount;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|