123456789101112131415161718192021222324 |
- //
- // YMWithdrawalAccountListViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/6.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMWithdrawalAccountListCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMWithdrawalAccountListViewModel : MSYOUPAIViewModel
- /// 获取提现账号列表数据
- - (void)getWithdrawalAccountListData;
- /// 默认提现账号数据
- - (void)defaultWithdrawalAccountData:(NSInteger)withdrawalAccountId;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, strong, readonly) NSMutableArray <YMWithdrawalAccountListCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|