123456789101112131415161718192021222324 |
- //
- // SPSBTransferImformationView.h
- // 我的社保
- //
- // Created by shanp on 2021/6/4.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBTransferImformationView : UITableView
- @property (nonatomic, strong) NSArray *spsb_data;
- @property (nonatomic, strong) NSArray *spsb_sectionNumberArray;
- @property (nonatomic, readonly, strong) NSString *spsb_name;
- @property (nonatomic, readonly, strong) NSString *spsb_remark;
- @property (nonatomic, strong) void (^spsb_selectRow)(NSIndexPath *indexPath);
- @end
- NS_ASSUME_NONNULL_END
|