123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // YMMyEarningsViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/27.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMMyEarningsWithdrawalAmountCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMMyEarningsViewModel : MSYOUPAIViewModel
- /// 获取我的收益信息
- - (void)getMyEarningsInfoData;
- /// 提交提现信息
- - (void)submitWithdrawalInfo;
- /// 前往收支明细
- - (void)gotoIncomeBreakdown;
- /// 前往绑定提现账号
- - (void)gotoBindWithdrawalAccount;
- /// 用户剩余金币
- @property (nonatomic, assign, readonly) CGFloat userRemainingPoints;
- /// 提现金额项目数据
- @property (nonatomic, strong, readonly) NSArray <YMMyEarningsWithdrawalAmountCellViewModel*>*withdrawalAmountItemDataArray;
- /// 提现账号类型名
- @property (nonatomic, strong, readonly) NSString *withdrawalAccountTypeName;
- /// 提现账号持有人
- @property (nonatomic, strong, readonly) NSString *withdrawalAccountHolder;
- /// 提现账号
- @property (nonatomic, strong, readonly) NSString *withdrawalAccount;
- /// 账户是否通过认证
- @property (nonatomic, assign, readonly) NSInteger isVerify;
- /// 提现说明
- @property (nonatomic, strong, readonly) NSAttributedString *withdrawalNotes;
- /// 获取提现金额
- @property (nonatomic, strong, readonly) RACSubject *getWithdrawalAmountSubject;
- /// 提现金额
- @property (nonatomic, assign, readonly) NSInteger withdrawalAmount;
- @end
- NS_ASSUME_NONNULL_END
|