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;
|
}
|
}
|