YMFeesSettingViewModel.h 903 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YMFeesSettingViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMFeesSettingCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMFeesSettingViewModel : MSYOUPAIViewModel
  12. /// 获取收费设置基础信息数据
  13. - (void)getFeesSettingBaseInfoData;
  14. /// 获取收费设置基础信息数据
  15. - (void)getFeesSettingPriceInfoData;
  16. /// 设置收费价格数据
  17. - (void)settingFeesPriceDataWithPriceId:(NSInteger)priceId ofType:(NSInteger)type;
  18. /// 列表数据
  19. @property (nonatomic, strong, readonly) NSArray <YMFeesSettingCellViewModel*>*listDataArray;
  20. /// 说明提示
  21. @property (nonatomic, strong, readonly) NSAttributedString *notesTipsAttributed;
  22. /// 收费设置功能操作
  23. @property (nonatomic, strong, readonly) RACSubject *feesSettingFunctionsOperationSubject;
  24. @end
  25. NS_ASSUME_NONNULL_END