123456789101112131415161718192021222324 |
- //
- // YMGuestViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/17.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMGuestCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMGuestViewModel : MSYOUPAIViewModel
- /// 获取访客列表数据
- - (void)getGuestListData;
- /// 是否隐藏遮罩视图
- - (BOOL)isHideMaskView;
- /// 请求数据分页
- @property (nonatomic, assign) NSInteger currentPage;
- /// 列表数据
- @property (nonatomic, strong, readonly) NSMutableArray <YMGuestCellViewModel*>*listDataArray;
- @end
- NS_ASSUME_NONNULL_END
|