-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTestModel.h
More file actions
76 lines (50 loc) · 1.52 KB
/
TestModel.h
File metadata and controls
76 lines (50 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//
// TestModel.h
//
//
// Created by fl-226 on 27/2/2019.
// Copyright © 2019年 fl-226. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface TestModel : NSObject
//sssss
@property (nonatomic, copy) NSString *userpic
//用户ID
@property (nonatomic, strong) NSNumber *userid
//标题
@property (nonatomic, copy) NSString *title
//小视频id
@property (nonatomic, strong) NSNumber *videoid
//小视频url
@property (nonatomic, copy) NSString *videoUrl
//小视频封面地址
@property (nonatomic, copy) NSString *videoCover
//小视频动图封面地址
@property (nonatomic, copy) NSString *dynamicCover
//小视频长度
@property (nonatomic, strong) NSNumber *time
//直播状态 1 直播中,0直播结束
@property (nonatomic, strong) NSNumber *livestatus
//roomid
@property (nonatomic, strong) NSNumber *roomid
//城市
@property (nonatomic, strong) NSNumber *city
//0-不在线 1-在线
@property (nonatomic, strong) NSNumber *onlinestatus
//点赞数
@property (nonatomic, strong) NSNumber *praisecount
//评论数
@property (nonatomic, strong) NSNumber *commentcount
//分享数
@property (nonatomic, strong) NSNumber *sharecount
//礼物数
@property (nonatomic, strong) NSNumber *giftcount
//音乐来源人ID
@property (nonatomic, strong) NSNumber *sourceaudiouserid
//音乐来源人头像
@property (nonatomic, copy) NSString *sourceaudiouserpic
//音乐ID
@property (nonatomic, strong) NSNumber *audioid
//是否点赞 0没有 1已点赞
@property (nonatomic, strong) NSNumber *ispraise
@end