admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.yeshi.buwan.videos.mogotv.entity;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
 
 
@Document(collection = "mogoTVVideo")
public class MogoTVVideo {
    @Id
    private String video_id;//10718686
    @Indexed
    private String clip_id;//350860,
    private Integer t1;//5,
    private String t2;//01案:夜半酒店Ⅰ(下),
    private String t3;//明星大侦探第六季01案:夜半酒店Ⅰ(下),
    private String t4;//2020-12-25,
    private String img;//https://1img.hitv.com/preview/sp_images/2020/12/25/20201225093530350.jpg_220x125.jpg,
    private Integer isnew;//0,
    private Integer isvip;//0,
    private String url;///b/350860/10718686.html,
    private Integer isIntact;//1,
    private String time;//83:03,
    private Integer contentType;//0,
    private String ts;//2020-12-25 09:32:57.0,
    private Date createTime;
    private Date updateTime;
 
    public String getVideo_id() {
        return video_id;
    }
 
    public void setVideo_id(String video_id) {
        this.video_id = video_id;
    }
 
    public String getClip_id() {
        return clip_id;
    }
 
    public void setClip_id(String clip_id) {
        this.clip_id = clip_id;
    }
 
    public Integer getT1() {
        return t1;
    }
 
    public void setT1(Integer t1) {
        this.t1 = t1;
    }
 
    public String getT2() {
        return t2;
    }
 
    public void setT2(String t2) {
        this.t2 = t2;
    }
 
    public String getT3() {
        return t3;
    }
 
    public void setT3(String t3) {
        this.t3 = t3;
    }
 
    public String getT4() {
        return t4;
    }
 
    public void setT4(String t4) {
        this.t4 = t4;
    }
 
    public String getImg() {
        return img;
    }
 
    public void setImg(String img) {
        this.img = img;
    }
 
    public Integer getIsnew() {
        return isnew;
    }
 
    public void setIsnew(Integer isnew) {
        this.isnew = isnew;
    }
 
    public Integer getIsvip() {
        return isvip;
    }
 
    public void setIsvip(Integer isvip) {
        this.isvip = isvip;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public Integer getIsIntact() {
        return isIntact;
    }
 
    public void setIsIntact(Integer isIntact) {
        this.isIntact = isIntact;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public Integer getContentType() {
        return contentType;
    }
 
    public void setContentType(Integer contentType) {
        this.contentType = contentType;
    }
 
    public String getTs() {
        return ts;
    }
 
    public void setTs(String ts) {
        this.ts = ts;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}