admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
package com.newvideo.pptv.entity;
 
public class PPTVBaseVideo {
    private String id;
    private String version;
    private String region;
    private String showTime;
    private String type;
    private String introduction;
    private String horizontalPoster;
    private String newPoster;
    private String otherName;
    private String language;
    private String englishName;
    private String op;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getOp() {
        return op;
    }
 
    public void setOp(String op) {
        this.op = op;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public String getRegion() {
        return region;
    }
 
    public void setRegion(String region) {
        this.region = region;
    }
 
    public String getShowTime() {
        return showTime;
    }
 
    public void setShowTime(String showTime) {
        this.showTime = showTime;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getIntroduction() {
        return introduction;
    }
 
    public void setIntroduction(String introduction) {
        this.introduction = introduction;
    }
 
    public String getHorizontalPoster() {
        return horizontalPoster;
    }
 
    public void setHorizontalPoster(String horizontalPoster) {
        this.horizontalPoster = horizontalPoster;
    }
 
    public String getNewPoster() {
        return newPoster;
    }
 
    public void setNewPoster(String newPoster) {
        this.newPoster = newPoster;
    }
 
    public String getOtherName() {
        return otherName;
    }
 
    public void setOtherName(String otherName) {
        this.otherName = otherName;
    }
 
    public String getLanguage() {
        return language;
    }
 
    public void setLanguage(String language) {
        this.language = language;
    }
 
    public String getEnglishName() {
        return englishName;
    }
 
    public void setEnglishName(String englishName) {
        this.englishName = englishName;
    }
}