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.
16 lines
576 B
Java
16 lines
576 B
Java
1 year ago
|
package com.supervision.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||
|
import com.supervision.model.DiseaseQuestion;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【vp_disease_question_relation(疾病问题关联表)】的数据库操作Service
|
||
|
* @createDate 2023-11-23 14:06:54
|
||
|
*/
|
||
|
public interface DiseaseQuestionService extends IService<DiseaseQuestion> {
|
||
|
|
||
|
Page<DiseaseQuestion> queryPageQuestionList(Integer pageNum, Integer pageSize, DiseaseQuestion diseaseQuestion);
|
||
|
}
|