ifish/Ifish/controllers/IfishTabControllers/消息/pushmassgaeModel/PushmessageModel.h

44 lines
1010 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// PushmessageModel.h
// Ifish
//
// Created by imac on 16/3/30.
// Copyright © 2016年 imac. All rights reserved.
//
#import "BaseYYModel.h"
@interface PushmessageModel : BaseYYModel
//消息类型
@property(nonatomic,copy) NSString *pushType;
//推送消息body消息详情
@property(nonatomic,copy) NSString *pushContext;
//消息title
@property(nonatomic,copy) NSString *pushTitle;
//消息Id
@property(nonatomic,copy) NSString *pushId;
//推送手机类型
Copy NSString *phoneType;
//推送类型
Copy NSString *jpushStatus;
Copy NSString *isRead;//1、未读 0 已读
//创建时间
@property(nonatomic,copy) NSString *createTime;
//设备id
@property(nonatomic,copy) NSString *deviceId;
//显示名称
@property(nonatomic,copy) NSString *showName;
//用户id
@property(nonatomic,copy) NSString *userId;
@property(nonatomic,copy) NSString *url;
//看护报告id
@property(nonatomic,copy) NSString *reportId;
@property(nonatomic,assign)CGFloat cellHeight;
-(void)getCellHeight;
@end