YMWithdrawalAccountListViewModel.h 712 B

123456789101112131415161718192021222324
  1. //
  2. // YMWithdrawalAccountListViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/6.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMWithdrawalAccountListCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMWithdrawalAccountListViewModel : MSYOUPAIViewModel
  12. /// 获取提现账号列表数据
  13. - (void)getWithdrawalAccountListData;
  14. /// 默认提现账号数据
  15. - (void)defaultWithdrawalAccountData:(NSInteger)withdrawalAccountId;
  16. /// 请求数据分页
  17. @property (nonatomic, assign) NSInteger currentPage;
  18. /// 列表数据
  19. @property (nonatomic, strong, readonly) NSMutableArray <YMWithdrawalAccountListCellViewModel*>*listDataArray;
  20. @end
  21. NS_ASSUME_NONNULL_END