You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
897 B
54 lines
897 B
// |
|
// StudentInfoViewController.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2021/11/17. |
|
// Copyright © 2021 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseTabViewController.h" |
|
|
|
|
|
@interface StudentInfoViewController : baseTabViewController |
|
|
|
/** |
|
添加 按钮 |
|
*/ |
|
//@property (strong, nonatomic) UIBarButtonItem *addBarButton; |
|
|
|
/** |
|
编辑 保存 按钮 |
|
*/ |
|
@property (strong, nonatomic) UIBarButtonItem *editAndSaveBarButton; |
|
/** |
|
二维码 |
|
*/ |
|
@property (strong, nonatomic) UIBarButtonItem *codeBarButton; |
|
/** |
|
是否是添加模式 |
|
*/ |
|
@property (assign, nonatomic) BOOL isAdd; |
|
|
|
/** |
|
是否 显示全部 资料 |
|
*/ |
|
@property (assign, nonatomic) BOOL isShowAllInfo; |
|
|
|
/** |
|
传进来的 imei |
|
*/ |
|
@property (strong, nonatomic) NSString * IMEI; |
|
|
|
/** |
|
是否是编辑模式 |
|
*/ |
|
@property (assign, nonatomic) BOOL isEdit; |
|
|
|
/** |
|
编辑的Model |
|
*/ |
|
@property (strong, nonatomic) Device *editDevice; |
|
|
|
@end |
|
|
|
|
|
|