1234567891011121314151617181920212223242526 |
- //
- // SPSBQueryListTableViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/5/27.
- //
- #import "SPSBTableViewController.h"
- #import "SPSBEnumerationProfile.h"
- @class SPSBPurchasersModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBQueryListTableViewController : SPSBTableViewController
- @property (nonatomic, assign) SPSBPurchaseBusinessType spsb_businessType;
- @property (nonatomic, strong, nullable) SPSBPurchasersModel *spsb_purchasers;
- @property (nonatomic, strong) NSString *spsb_choseYear;
- - (void)refreshAllData;
- - (void)reloadData;
- @end
- NS_ASSUME_NONNULL_END
|