12345678910111213141516171819202122 |
- //
- // SPSBMinePurchasersDetailsViewController.h
- // 我的社保
- //
- // Created by jiaxian_he on 2021/5/15.
- //
- #import <UIKit/UIKit.h>
- @class SPSBPurchasersModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBMinePurchasersDetailsViewController : UIViewController
- @property (nonatomic, strong) SPSBPurchasersModel *spsb_purchasers;
- @property (nonatomic, assign) bool spsb_isEdit;
- @property (nonatomic, strong) void (^spsb_hadChnaged)(void);
- @end
- NS_ASSUME_NONNULL_END
|