|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.miaxis.common.utils.DateUtils;
|
|
|
+import com.miaxis.question.domain.QuestionInfoKtGet;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
@@ -38,4 +39,62 @@ public class QuestionInfoKtNewServiceImpl extends ServiceImpl<QuestionInfoKtNewM
|
|
|
public int selectQuestionInfoKtNewCount(QuestionInfoKtNew questionInfoKtNew) {
|
|
|
return questionInfoKtNewMapper.selectQuestionInfoKtNewCount(questionInfoKtNew);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ExplainGif
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewExplainGifList() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewExplainGifList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ExplainMp3
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewExplainMp3List() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewExplainMp3List();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Image
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewImageList() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewImageList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ImageYdt
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewImageYdtList() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewImageYdtList();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Issuemp3
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewIssuemp3List() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewIssuemp3List();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Answermp3
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewAnswermp3List() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewAnswermp3List();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Explainjsmp3
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<QuestionInfoKtNew> selectQuestionInfoKtNewExplainjsmp3List() {
|
|
|
+ return questionInfoKtNewMapper.selectQuestionInfoKtNewExplainjsmp3List();
|
|
|
+ }
|
|
|
}
|