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.
|
|
|
//
|
|
|
|
// ScanCodeModel.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2022/10/13.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseModel.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface ScanCodeModel : BaseModel
|
|
|
|
|
|
|
|
/// "1"代表已绑定,"0"该设备未绑定,"2"该设备自己已经绑定了
|
|
|
|
@property (nonatomic ,assign) NSInteger binding_status;
|
|
|
|
|
|
|
|
/// 管理员的邮箱
|
|
|
|
@property (nonatomic ,copy) NSString *admin_email;
|
|
|
|
|
|
|
|
/// 设备类型(0.默认 1.学生证,2.学生卡,3.老人机)
|
|
|
|
@property (nonatomic ,assign) NSInteger device_type;
|
|
|
|
|
|
|
|
/// 管理员的手机号码
|
|
|
|
@property (nonatomic ,copy) NSString *admin_phone;
|
|
|
|
|
|
|
|
/// 管理员ID
|
|
|
|
@property (nonatomic ,copy) NSString *adminUserId;
|
|
|
|
|
|
|
|
/// 学校名称
|
|
|
|
@property (nonatomic ,copy) NSString *schName;
|
|
|
|
|
|
|
|
/// 年级名称
|
|
|
|
@property (nonatomic ,copy) NSString *gradeName;
|
|
|
|
|
|
|
|
/// 班级名称
|
|
|
|
@property (nonatomic ,copy) NSString *className;
|
|
|
|
|
|
|
|
/// 设备手机号
|
|
|
|
@property (nonatomic ,copy) NSString *phone;
|
|
|
|
|
|
|
|
/// 学生名称
|
|
|
|
@property (nonatomic ,copy) NSString *name;
|
|
|
|
|
|
|
|
/// 是否是零售
|
|
|
|
@property (nonatomic ,assign) BOOL virtualFlag;
|
|
|
|
|
|
|
|
/// 学校ID
|
|
|
|
@property (nonatomic ,copy) NSString *schId;
|
|
|
|
|
|
|
|
/// 年级ID
|
|
|
|
@property (nonatomic ,copy) NSString *gradeId;
|
|
|
|
|
|
|
|
/// 班级ID
|
|
|
|
@property (nonatomic ,copy) NSString *classId;
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|