123456789101112131415161718 |
- //
- // StudentList.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/8.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "SYBase_tbVC.h"
- typedef NS_ENUM(NSInteger, PageType) {
- PageType_StudentList = 0,
- PageType_FaceCapture,
- };
- @interface StudentList : SYBase_tbVC
- @property (nonatomic, assign) PageType pageType;
- @end
|