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.
52 lines
1.2 KiB
52 lines
1.2 KiB
// |
|
// AttentionModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/29. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface AttentionModel : BaseModel |
|
|
|
/// string example: 申请状态(0.审批中,1.通过,2.拒绝) |
|
@property (nonatomic ,assign) NSInteger action; |
|
|
|
/// string example: 管理员id |
|
@property (nonatomic ,copy) NSString *adminId; |
|
|
|
/// string($date-time) 申请时间 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// string example: 主键id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// string example: 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// string example: 设备名称 |
|
@property (nonatomic ,copy) NSString *name; |
|
|
|
/// string example: 申请人手机号码 |
|
@property (nonatomic ,copy) NSString *phone; |
|
|
|
/// string example: 是否已读(0.未读1.已读) |
|
@property (nonatomic ,copy) NSString *read; |
|
|
|
/// string example: 与孩子的关系 |
|
@property (nonatomic ,copy) NSString *relationship; |
|
|
|
/// string example: 头像id |
|
@property (nonatomic ,copy) NSString *relationshipImageId; |
|
|
|
/// string example: 消息类型 |
|
@property (nonatomic ,copy) NSString *type; |
|
|
|
/// string example: 用户id |
|
@property (nonatomic ,copy) NSString *userId; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|