// // YMInvitationBreakdownListViewModel.h // MSYOUPAI // // Created by YoMi on 2024/3/15. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" #import "YMInvitationBreakdownListCellViewModel.h" NS_ASSUME_NONNULL_BEGIN /** 收支明细分类类型 */ typedef NS_ENUM(NSUInteger, YMInvitationBreakdownCategoryType) { /** 邀请人员*/ YMInvitationBreakdownCategoryTypeInvitingPersons = 0, /** 邀请收益*/ YMInvitationBreakdownCategoryTypeInvitingEarnings, }; @interface YMInvitationBreakdownListViewModel : MSYOUPAIViewModel /// 获取邀请明细列表数据 - (void)getInvitationBreakdownListData; /// 请求数据分页 @property (nonatomic, assign) NSInteger currentPage; /// 邀请明细分类类型 @property (nonatomic, assign, readonly) YMInvitationBreakdownCategoryType categoryType; /// 列表数据 @property (nonatomic, strong, readonly) NSMutableArray *listDataArray; @end NS_ASSUME_NONNULL_END