12345678910111213141516171819202122 |
- //
- // StudentChangeSchoolVC.h
- // jiaPei
- //
- // Created by 张嵘 on 2020/12/1.
- // Copyright © 2020 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RQBaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface StudentChangeSchoolVC : RQBaseViewController
- @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
|