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.

55 lines
895 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