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.
43 lines
964 B
43 lines
964 B
// |
|
// SystermModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/29. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SystermModel : BaseModel |
|
|
|
/// string($date-time) example: 创建时间 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// stringexample: id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// string example: 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// string example: 是否已读(0.未读,1.已读) |
|
@property (nonatomic ,copy) NSString *messageRead; |
|
|
|
/// string example: 设备名称 |
|
@property (nonatomic ,copy) NSString *name; |
|
|
|
/// string example: 联系人手机号 |
|
@property (nonatomic ,copy) NSString *phone; |
|
|
|
/// string example: 类型 |
|
@property (nonatomic ,copy) NSString *type; |
|
|
|
/// string example: 推送人的ID |
|
@property (nonatomic ,copy) NSString *userId; |
|
|
|
/// string example: 消息内容 |
|
@property (nonatomic ,copy) NSString *content; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|