فهرست منبع

一点通抓取修改

小么熊🐻 1 سال پیش
والد
کامیت
5b2ecb1e54

+ 25 - 0
zzjs-service/src/main/java/com/miaxis/question/service/IQuestionInfoKtNewService.java

@@ -0,0 +1,25 @@
+package com.miaxis.question.service;
+
+import java.util.List;
+import com.miaxis.question.domain.QuestionInfoKtNew;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * 获取快通题库Service接口
+ *
+ * @author miaxis
+ * @date 2023-11-03
+ */
+public interface IQuestionInfoKtNewService extends IService<QuestionInfoKtNew>{
+    /**
+     * 查询获取快通题库列表
+     *
+     * @param questionInfoKtNew 获取快通题库
+     * @return 获取快通题库集合
+     */
+    public List<QuestionInfoKtNew> selectQuestionInfoKtNewList(QuestionInfoKtNew questionInfoKtNew);
+
+
+    public int selectQuestionInfoKtNewCount(QuestionInfoKtNew questionInfoKtNew);
+
+}

+ 41 - 0
zzjs-service/src/main/java/com/miaxis/question/service/impl/QuestionInfoKtNewServiceImpl.java

@@ -0,0 +1,41 @@
+package com.miaxis.question.service.impl;
+
+import java.util.List;
+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 org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.apache.commons.lang3.StringUtils;
+import com.miaxis.question.mapper.QuestionInfoKtNewMapper;
+import com.miaxis.question.domain.QuestionInfoKtNew;
+import com.miaxis.question.service.IQuestionInfoKtNewService;
+
+/**
+ * 获取快通题库Service业务层处理
+ *
+ * @author miaxis
+ * @date 2023-11-03
+ */
+@Service
+public class QuestionInfoKtNewServiceImpl extends ServiceImpl<QuestionInfoKtNewMapper, QuestionInfoKtNew> implements IQuestionInfoKtNewService {
+    @Autowired
+    private QuestionInfoKtNewMapper questionInfoKtNewMapper;
+
+    /**
+     * 查询获取快通题库列表
+     *
+     * @param questionInfoKtNew 获取快通题库
+     * @return 获取快通题库
+     */
+    @Override
+    public List<QuestionInfoKtNew> selectQuestionInfoKtNewList(QuestionInfoKtNew questionInfoKtNew){
+        return questionInfoKtNewMapper.selectQuestionInfoKtNewList(questionInfoKtNew);
+    }
+
+    @Override
+    public int selectQuestionInfoKtNewCount(QuestionInfoKtNew questionInfoKtNew) {
+        return questionInfoKtNewMapper.selectQuestionInfoKtNewCount(questionInfoKtNew);
+    }
+}