1234567891011121314151617181920212223242526 |
- //
- // ChangeSchoolDetailViewController.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/7/2.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <YNPageViewController/YNPageViewController.h>
- #import "ChangeSchoolListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^upResultBlock)(BOOL isSuccess);
- @interface ChangeSchoolDetailViewController : YNPageViewController
- @property (nonatomic, readwrite, strong) ChangeSchoolListModel *changeSchoolListModel;
- @property (nonatomic, readwrite, copy) upResultBlock kUpResultBlock;
- - (void)initWithUpResultBlock:(upResultBlock)kUpResultBlock;
- + (instancetype)suspendChangeSchoolDetailPageVC;
- + (instancetype)suspendChangeSchoolDetailPageVCWithConfig:(YNPageConfigration *)config;
- @end
- NS_ASSUME_NONNULL_END
|