1234567891011121314151617181920212223 |
- //
- // SPSBQueryListDetailsViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/5/28.
- //
- #import <UIKit/UIKit.h>
- #import "SPSBEnumerationProfile.h"
- @class SPSBPurchasersModel, SPSBQueryListModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBQueryListDetailsViewController : UIViewController
- @property (nonatomic, assign) SPSBPurchaseBusinessType spsb_businessType;
- @property (nonatomic, strong) NSArray<SPSBQueryListModel *> *spsb_data;
- @property (nonatomic, strong) SPSBPurchasersModel *spsb_purchasers;
- @end
- NS_ASSUME_NONNULL_END
|