|
|
|
//
|
|
|
|
// EditDeviceModel.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2022/12/7.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseModel.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface EditDeviceModel : BaseModel
|
|
|
|
|
|
|
|
/// string example: 设备拥有者生日
|
|
|
|
@property (nonatomic ,copy) NSString *birthday;
|
|
|
|
|
|
|
|
/// string example: 班级名称
|
|
|
|
@property (nonatomic ,copy) NSString *className;
|
|
|
|
|
|
|
|
/// string example: 年纪名称
|
|
|
|
@property (nonatomic ,copy) NSString *gradeName;
|
|
|
|
|
|
|
|
/// string example: 设备拥有者身高
|
|
|
|
@property (nonatomic ,copy) NSString *height;
|
|
|
|
|
|
|
|
/// string example: 用户身份(0:游客,1:普通用户(申请关注的人),2:管理员)
|
|
|
|
@property (nonatomic ,assign) NSInteger identity;
|
|
|
|
|
|
|
|
/// string example: 设备用户头像
|
|
|
|
@property (nonatomic ,copy) NSString *image;
|
|
|
|
|
|
|
|
/// string example: 设备拥有者名字
|
|
|
|
@property (nonatomic ,copy) NSString *name;
|
|
|
|
|
|
|
|
/// string example: 设备电话号码
|
|
|
|
@property (nonatomic ,copy) NSString *phone;
|
|
|
|
|
|
|
|
/// string example: 与孩子关系
|
|
|
|
@property (nonatomic ,copy) NSString *relation;
|
|
|
|
|
|
|
|
/// string example: 与孩子关系头像id
|
|
|
|
@property (nonatomic ,assign) NSInteger relationImageId;
|
|
|
|
|
|
|
|
/// string example: 学校名称
|
|
|
|
@property (nonatomic ,copy) NSString *schName;
|
|
|
|
|
|
|
|
/// string example: 设备拥有者性别(1.男,0.女,2.保密)
|
|
|
|
@property (nonatomic ,assign) NSInteger sex;
|
|
|
|
|
|
|
|
/// string example: 设备拥有者体重
|
|
|
|
@property (nonatomic ,copy) NSString *weight;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|