123456789101112131415161718192021 |
- //
- // StudentChangeSchoolVC.h
- // jiaPei
- //
- // Created by 张嵘 on 2020/12/1.
- // Copyright © 2020 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface StudentChangeSchoolVC : UIViewController
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet UIView *footerView;
- @property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConst;
- @end
- NS_ASSUME_NONNULL_END
|