SPSBQueryListTableViewController.h 579 B

1234567891011121314151617181920212223242526
  1. //
  2. // SPSBQueryListTableViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/5/27.
  6. //
  7. #import "SPSBTableViewController.h"
  8. #import "SPSBEnumerationProfile.h"
  9. @class SPSBPurchasersModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SPSBQueryListTableViewController : SPSBTableViewController
  12. @property (nonatomic, assign) SPSBPurchaseBusinessType spsb_businessType;
  13. @property (nonatomic, strong, nullable) SPSBPurchasersModel *spsb_purchasers;
  14. @property (nonatomic, strong) NSString *spsb_choseYear;
  15. - (void)refreshAllData;
  16. - (void)reloadData;
  17. @end
  18. NS_ASSUME_NONNULL_END