From 73a49ddd0516e5c9a4b697c593d62c74e420403b Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期四, 24 十月 2024 12:27:31 +0800
Subject: [PATCH] 2024年10月24日12:27:28

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