From 9586fd5135bc918ebcbfce2c2e0d08790561f536 Mon Sep 17 00:00:00 2001 From: liyuhua <15626451870@163.com> Date: Sat, 20 Jan 2024 10:08:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E6=A8=A1=E5=9E=8B=E5=8F=8A?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Tool/ThemeColor/Swift/MewAppColor.swift | 12 ------- .../Message/Presenter/CHMessagePresenter.h | 25 ------------- .../Main/Mine/Model/Friend/MewFansInfoModel.h | 36 ------------------- .../Main/Mine/Model/Friend/MewFansInfoModel.m | 12 ------- 4 files changed, 85 deletions(-) delete mode 100644 yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift delete mode 100644 yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h delete mode 100644 yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h delete mode 100644 yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m diff --git a/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift b/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift deleted file mode 100644 index 2c1a6d7..0000000 --- a/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift +++ /dev/null @@ -1,12 +0,0 @@ -// -// MewAppColor.swift -// yinmeng-ios -// -// Created by duoban on 2024/1/15. -// - -import UIKit - -class MewAppColor: UIColor { - -} diff --git a/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h b/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h deleted file mode 100644 index 1057d84..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// CHMessagePresenter.h -// mew-ios -// -// Created by 触海 on 2023/11/16. -// - -#import "BaseMvpPresenter.h" - -NS_ASSUME_NONNULL_BEGIN - -@interface CHMessagePresenter : BaseMvpPresenter -- (void)getChatLimitReceiverUid:(NSString *)receiverUid; - -/// 获取用户信息 -/// @param uid 用户uid -- (void)getUserInfo:(NSString *)uid; -///是否关注当前用户 -- (void)getFansLike:(NSString *)likeUid; -/// 关注用户 -/// @param targetUid 目标用户的uid -- (void)mew_attentionUser:(NSString *)targetUid; -@end - -NS_ASSUME_NONNULL_END diff --git a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h b/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h deleted file mode 100644 index 866236c..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// MewFansInfoModel.h -// mew-ios -// -// Created by 触海 on 2023/11/18. -// - -#import -#import "MewEnum.h" - -NS_ASSUME_NONNULL_BEGIN - -@interface MewFansInfoModel : NSObject -///头像 -@property (nonatomic,copy) NSString *avatar; -///姓名 -@property (nonatomic,copy) NSString *nick; -///uid -@property (nonatomic,copy) NSString *uid; -///性别 -@property (nonatomic,assign) MewSexType gender; -///类型 -@property (nonatomic,assign) NSInteger defUser; -///魅力等级 -@property (nonatomic,copy) NSString *charmUrl; -///等级 -@property (nonatomic,copy) NSString *experUrl; -///签名 -@property (nonatomic,copy) NSString *userDesc; -///是否有效 -@property (nonatomic,assign) BOOL valid; -///当前用户所在的房间 映射的字段 -@property (nonatomic,copy) NSString *userInRoomUid; -@end - -NS_ASSUME_NONNULL_END diff --git a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m b/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m deleted file mode 100644 index 95bfb0b..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m +++ /dev/null @@ -1,12 +0,0 @@ -// -// MewFansInfoModel.m -// mew-ios -// -// Created by 触海 on 2023/11/18. -// - -#import "MewFansInfoModel.h" - -@implementation MewFansInfoModel - -@end