ChangeSchoolDetailViewController.h 778 B

1234567891011121314151617181920212223242526
  1. //
  2. // ChangeSchoolDetailViewController.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2019/7/2.
  6. // Copyright © 2019 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <YNPageViewController/YNPageViewController.h>
  10. #import "ChangeSchoolListModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. typedef void(^upResultBlock)(BOOL isSuccess);
  13. @interface ChangeSchoolDetailViewController : YNPageViewController
  14. @property (nonatomic, readwrite, strong) ChangeSchoolListModel *changeSchoolListModel;
  15. @property (nonatomic, readwrite, copy) upResultBlock kUpResultBlock;
  16. - (void)initWithUpResultBlock:(upResultBlock)kUpResultBlock;
  17. + (instancetype)suspendChangeSchoolDetailPageVC;
  18. + (instancetype)suspendChangeSchoolDetailPageVCWithConfig:(YNPageConfigration *)config;
  19. @end
  20. NS_ASSUME_NONNULL_END