关注和最新数据的处理

This commit is contained in:
fengshuo
2022-05-19 10:39:04 +08:00
parent f4a99bf0d2
commit 465e73b6f1
34 changed files with 1475 additions and 37 deletions

View File

@@ -0,0 +1,19 @@
//
// XPMonentsLatestProtocol.h
// xplan-ios
//
// Created by 冯硕 on 2022/5/18.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class MonentsListInfoModel;
@protocol XPMonentsLatestProtocol <NSObject>
///获取最新列表从成功
- (void)getMonentsLatestListSuccess:(MonentsListInfoModel *)listInfo state:(int)state;
///获取最新列表从失败
- (void)getMonentsLatestListFail:(NSString *)msg state:(int)state;
@end
NS_ASSUME_NONNULL_END