wjc
2023-07-07 22494af577e21a930abef309f2f60c03c9615bd1
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
package com.hdl.linkpm.sdk.home.bean;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2022/6/8
 * description:
 */
public class QuestionInfo implements Serializable {
    /**
     * 解答内容
     */
    private String answerContent;
    /**
     * 内容分类 0:超文本 1:视频,可用值:HYPERTEXT,VIDEO
     */
    private String contentType;
    /**
     * 内容分类名称
     */
    private String coverUrl;
    /**
     * 封面地址
     */
    private String questionDesc;
    /**
     * 描述
     */
    private String languageType;
    private String modifyTime;
    /**
     * 问题标题
     */
    private String question;
    private String sort;
    private String contentTypeName;
    private String languageTypeName;
    /**
     * 帮助中心id
     */
    private String supportCenterId;
    /**
     * 视频地址
     */
    private String videoUrl;
 
    public String getAnswerContent() {
        return answerContent == null ? "" : answerContent;
    }
 
    public void setAnswerContent(@NonNull String answerContent) {
        this.answerContent = answerContent;
    }
 
    public String getContentType() {
        return contentType == null ? "" : contentType;
    }
 
    public void setContentType(@NonNull String contentType) {
        this.contentType = contentType;
    }
 
    public String getCoverUrl() {
        return coverUrl == null ? "" : coverUrl;
    }
 
    public void setCoverUrl(@NonNull String coverUrl) {
        this.coverUrl = coverUrl;
    }
 
    public String getQuestionDesc() {
        return questionDesc == null ? "" : questionDesc;
    }
 
    public void setQuestionDesc(@NonNull String questionDesc) {
        this.questionDesc = questionDesc;
    }
 
    public String getLanguageType() {
        return languageType == null ? "" : languageType;
    }
 
    public void setLanguageType(@NonNull String languageType) {
        this.languageType = languageType;
    }
 
    public String getModifyTime() {
        return modifyTime == null ? "" : modifyTime;
    }
 
    public void setModifyTime(@NonNull String modifyTime) {
        this.modifyTime = modifyTime;
    }
 
    public String getQuestion() {
        return question == null ? "" : question;
    }
 
    public void setQuestion(@NonNull String question) {
        this.question = question;
    }
 
    public String getSort() {
        return sort == null ? "" : sort;
    }
 
    public void setSort(@NonNull String sort) {
        this.sort = sort;
    }
 
    public String getContentTypeName() {
        return contentTypeName == null ? "" : contentTypeName;
    }
 
    public void setContentTypeName(@NonNull String contentTypeName) {
        this.contentTypeName = contentTypeName;
    }
 
    public String getLanguageTypeName() {
        return languageTypeName == null ? "" : languageTypeName;
    }
 
    public void setLanguageTypeName(@NonNull String languageTypeName) {
        this.languageTypeName = languageTypeName;
    }
 
    public String getSupportCenterId() {
        return supportCenterId == null ? "" : supportCenterId;
    }
 
    public void setSupportCenterId(@NonNull String supportCenterId) {
        this.supportCenterId = supportCenterId;
    }
 
    public String getVideoUrl() {
        return videoUrl == null ? "" : videoUrl;
    }
 
    public void setVideoUrl(@NonNull String videoUrl) {
        this.videoUrl = videoUrl;
    }
}