You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
876 B
Java
28 lines
876 B
Java
2 years ago
|
package com.supervision.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.supervision.model.DiseaseQuestion;
|
||
|
import com.supervision.service.DiseaseQuestionService;
|
||
|
import com.supervision.mapper.DiseaseQuestionMapper;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【vp_disease_question_relation(疾病问题关联表)】的数据库操作Service实现
|
||
|
* @createDate 2023-11-23 14:06:54
|
||
|
*/
|
||
|
@Service
|
||
|
public class DiseaseQuestionServiceImpl extends ServiceImpl<DiseaseQuestionMapper, DiseaseQuestion>
|
||
|
implements DiseaseQuestionService {
|
||
|
|
||
|
@Override
|
||
|
public Page<DiseaseQuestion> queryPageQuestionList(Integer pageNum, Integer pageSize, DiseaseQuestion diseaseQuestion) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|