From ce88de4891b87c3b7b2750575e15d6e48d518852 Mon Sep 17 00:00:00 2001 From: hxb <hxb@hdlchina.com.cn> Date: 星期四, 24 十月 2024 10:39:12 +0800 Subject: [PATCH] 增加云端库 --- HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/QuestionInfo.java | 145 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 145 insertions(+), 0 deletions(-) diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/QuestionInfo.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/QuestionInfo.java new file mode 100644 index 0000000..16d60e0 --- /dev/null +++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/QuestionInfo.java @@ -0,0 +1,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 { + /** + * 瑙g瓟鍐呭 + */ + 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; + } +} \ No newline at end of file -- Gitblit v1.8.0