46 lines
1.2 KiB
Objective-C
46 lines
1.2 KiB
Objective-C
//
|
|
// IfishKankanListModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/8.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishKankanListModel : NSObject
|
|
|
|
@property(nonatomic,strong)NSString *room_id; //房间号
|
|
|
|
@property(nonatomic,strong)NSString *room_name; //内容
|
|
|
|
@property(nonatomic,strong)NSString *nickname; //直播昵称
|
|
|
|
@property(nonatomic,strong)NSString *popularityValue; //人气值
|
|
|
|
@property(nonatomic,strong)NSString *roomDesc; //爱鱼宣言
|
|
|
|
@property(nonatomic,strong)NSString *numberDays; //开播时间
|
|
|
|
@property(nonatomic,strong)NSString *distance; //距离
|
|
|
|
@property(nonatomic,strong)NSString *cameraId; //
|
|
|
|
@property(nonatomic,strong)NSString *userImg; //用户头像
|
|
|
|
@property(nonatomic,strong)NSString *liveness; //活跃度
|
|
|
|
@property(nonatomic) BOOL isZan; //是否赞过1赞过
|
|
@property(nonatomic) CGFloat goldValue;
|
|
@property(nonatomic) int gradeNum;
|
|
@property(nonatomic) int zanNumber;
|
|
|
|
@property(nonatomic,strong)NSString *userId; //
|
|
|
|
@property(nonatomic,strong)NSString *userType; //用户类型 1 商家 0 普通用户
|
|
|
|
@property(nonatomic)int pinglunNum;
|
|
|
|
-(instancetype)initWithDict:(NSDictionary *)dict;
|
|
@end
|