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.
19 lines
641 B
Java
19 lines
641 B
Java
1 year ago
|
package com.supervision.manage.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||
|
import com.supervision.manage.pojo.vo.MedicalRecManageVO;
|
||
|
import com.supervision.vo.manage.MedicalRecPageResVO;
|
||
|
import com.supervision.model.Disease;
|
||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface MedicalRecManageService {
|
||
|
|
||
|
List<Disease> queryDiseaseListByKeyWord(String keyword);
|
||
|
|
||
|
IPage<MedicalRecPageResVO> queryMedicalRecManagePage(String selfDescKeyword, String gender, String diseaseId, Integer pageNum, Integer pageSize);
|
||
|
|
||
|
void createMedicalRec(MedicalRecManageVO reqVO);
|
||
|
}
|