SPSBCustomerServiceManager.h 707 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // SPSBCustomerServiceManager.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBCustomerServiceManager : NSObject
  10. @property (nonatomic, assign) bool spsb_isChecking;
  11. @property (nonatomic, assign) bool spsb_isClickNotification;//是否点击通知进入
  12. @property (nonatomic, assign) bool spsb_isIn;
  13. @property (nonatomic, assign) NSInteger spsb_notificationNum;
  14. + (SPSBCustomerServiceManager *)shareManager;
  15. - (void)checkSobot;
  16. - (void)delayToOnlineContact;
  17. - (void)toOnlineContactWithBaseController:(nullable UIViewController *)vc;
  18. @end
  19. SPSBCustomerServiceManager *spsb_customerServiceManager(void);
  20. NS_ASSUME_NONNULL_END