CNLiveModel.h
2.63 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
//
// CNLiveModel.h
// CNLiveScioLive
//
// Created by CNLive-zxw on 2018/9/18.
// Copyright © 2018年 CNLive. All rights reserved.
//
#import "CNLiveBaseModel.h"
@interface CNLiveModel : CNLiveBaseModel
@property (nonatomic, copy) NSString *ID;
@property (nonatomic, copy) NSString *fun;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *enTitle;
@property (nonatomic, copy) NSString *pic;
@property (nonatomic, copy) NSString *controller;
@property (nonatomic, copy) NSString *img;
@property (nonatomic, copy) NSString *selectedImage;
@property (nonatomic, copy) NSString *createDate;
@property (nonatomic, copy) NSString *liveShow;//liveShow 展示标识 0:APP不展示 1:展示
@property (nonatomic, copy) NSString *liveFlag;//liveFlag 直播标识 0:视频直播 1:图文直播
@property (nonatomic, copy) NSString *videoFlag;//videoFlag 0 图文回放 1视频回放
/*
{
"liveFlag":"1",
"activityId":"8c31fea4effd4c24a8dcbbf540569b3e",
"title":"国新办举行基层农业工作者与中外记者见面会",
"playbackId":"8c31fea4effd4c24a8dcbbf540569b3e",
"checkinfo":"1",
"status":"4",
"channelId":"38_gxbapp",
"description":"国务院新闻办公室于2018年9月20日(星期四)上午10时在国务院新闻办新闻发布厅举行中外记者见面会,请4位基层农业工作者(名单附后)围绕\u201C农民丰收\u201D与中外记者见面交流。",
"poster":"http:\/\/app.scio.gov.cn\/upload\/img\/2018\/09\/1d2e5541-6e70-45d7-bd81-543ae5cd51ea.png",
"liveEndDateTime":"2018-09-20 12:00:00",
"liveStartDateTime":"2018-09-20 10:00:00"
}
*/
@property (nonatomic, copy) NSString *activityId;
@property (nonatomic, copy) NSString *playbackId;
@property (nonatomic, copy) NSString *checkinfo;
@property (nonatomic, copy) NSString *status;
@property (nonatomic, copy) NSString *channelId;
@property (nonatomic, copy) NSString *Description;
@property (nonatomic, copy) NSString *poster;
@property (nonatomic, copy) NSString *liveEndDateTime;
@property (nonatomic, copy) NSString *liveStartDateTime;
@property (nonatomic, copy) NSString *cmsColumnName;
@property (nonatomic, copy) NSString *cmsContentId;
@property (nonatomic, copy) NSString *Content;
@property (nonatomic, copy) NSString *pageUrl;
@property (nonatomic, copy) NSString *videoUrl;
@property (nonatomic, copy) NSString *uploadVideoUrl;
@property (nonatomic, copy) NSString *gxbArticleId;
@property (nonatomic, copy) NSString *author;
@property (nonatomic, copy) NSString *desc;
@property (nonatomic, copy) NSString *subTitle;
@property (nonatomic, copy) NSString *publishDate;
@property (nonatomic, copy) NSString *shareUrl;
@end