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.
27 lines
792 B
Java
27 lines
792 B
Java
package com.supervision.mapper;
|
|
|
|
import com.supervision.model.DiseasePhysical;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.supervision.vo.manage.DiseasePhysicalResVo;
|
|
import com.supervision.vo.manage.DiseasePhysicalStrResVo;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author flevance
|
|
* @description 针对表【vp_disease_physical(疾病体格检查)】的数据库操作Mapper
|
|
* @createDate 2023-10-20 17:19:21
|
|
* @Entity com.supervision.model.DiseasePhysical
|
|
*/
|
|
public interface DiseasePhysicalMapper extends BaseMapper<DiseasePhysical> {
|
|
|
|
List<DiseasePhysicalResVo> queryListByDiseaseId(@Param("diseaseId") String diseaseId);
|
|
List<DiseasePhysicalStrResVo> queryListStrByDiseaseId(@Param("diseaseId") String diseaseId);
|
|
|
|
}
|
|
|
|
|
|
|
|
|