StudentChangeSchoolVC.h 511 B

123456789101112131415161718192021
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface StudentChangeSchoolVC : UIViewController
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. @property (weak, nonatomic) IBOutlet UIView *footerView;
  13. @property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConst;
  15. @end
  16. NS_ASSUME_NONNULL_END