YMGuestViewModel.h 586 B

123456789101112131415161718192021222324
  1. //
  2. // YMGuestViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/17.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMGuestCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMGuestViewModel : MSYOUPAIViewModel
  12. /// 获取访客列表数据
  13. - (void)getGuestListData;
  14. /// 是否隐藏遮罩视图
  15. - (BOOL)isHideMaskView;
  16. /// 请求数据分页
  17. @property (nonatomic, assign) NSInteger currentPage;
  18. /// 列表数据
  19. @property (nonatomic, strong, readonly) NSMutableArray <YMGuestCellViewModel*>*listDataArray;
  20. @end
  21. NS_ASSUME_NONNULL_END