StudentChangeSchoolVC.h 548 B

12345678910111213141516171819202122
  1. //
  2. // StudentChangeSchoolVC.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2020/12/1.
  6. // Copyright © 2020 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RQBaseViewController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface StudentChangeSchoolVC : RQBaseViewController
  12. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  13. @property (weak, nonatomic) IBOutlet UIView *footerView;
  14. @property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConst;
  16. @end
  17. NS_ASSUME_NONNULL_END