12345678910111213141516171819202122 |
- //
- // SPSBQueryListViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/5/27.
- //
- #import <UIKit/UIKit.h>
- @class SPSBPurchasersModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBQueryListViewController : UIViewController
- @property (nonatomic, assign) bool spsb_isQueryAccumulationFund;
- @property (nonatomic, strong, nullable) SPSBPurchasersModel *spsb_purchasers;
- @property (nonatomic, strong, nullable) NSString *spsb_year;
- @end
- NS_ASSUME_NONNULL_END
|