2021-09-07 23:05:43 +08:00
|
|
|
//
|
|
|
|
// MainPresenter.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
2021-11-01 14:25:16 +08:00
|
|
|
// Created by zu on 2021/9/8.
|
2021-09-07 23:05:43 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface MainPresenter : BaseMvpPresenter
|
|
|
|
|
|
|
|
- (void)autoLogin;
|
2021-10-21 20:05:30 +08:00
|
|
|
- (void)loginNIM;
|
2021-09-14 16:57:13 +08:00
|
|
|
- (void)getUserInfo;
|
2021-10-21 20:05:30 +08:00
|
|
|
/// 检查是否有未消费的内购订单
|
|
|
|
- (void)checkTranscation;
|
2021-09-07 23:05:43 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|