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.
57 lines
1.4 KiB
57 lines
1.4 KiB
// |
|
// 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.男,2.女,3.保密) |
|
@property (nonatomic ,assign) NSInteger sex; |
|
|
|
/// string example: 设备拥有者体重 |
|
@property (nonatomic ,copy) NSString *weight; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|