|
|
|
@ -14,25 +14,35 @@ public interface PmsPatientDao extends PmsPatientMapper { |
|
|
|
List<PmsPatientVo.PatientList> queryPatientList(@Param("param") PmsPatientDto.QueryPatient param, |
|
|
|
@Param("dataScope") String dataScope, |
|
|
|
@Param("userId") Long userId, |
|
|
|
@Param("userName")String userName, |
|
|
|
@Param("deptIdList")List<Long> deptIdList); |
|
|
|
@Param("userName") String userName, |
|
|
|
@Param("deptIdList") List<Long> deptIdList); |
|
|
|
|
|
|
|
|
|
|
|
PmsPatientVo.PatientInfo queryPatientEvaluationById(@Param("id")Long id); |
|
|
|
PmsPatientVo.PatientInfo queryPatientEvaluationById(@Param("id") Long id); |
|
|
|
|
|
|
|
void deleteById(Long id); |
|
|
|
|
|
|
|
void deletePatientAcpByPatientId(Long patientId); |
|
|
|
|
|
|
|
void deletePatientBodyByPatientId(Long patientId); |
|
|
|
|
|
|
|
void deletePatientFamilyIllnessByPatientId(Long patientId); |
|
|
|
|
|
|
|
void deletePatientIllnessHistoryByPatientId(Long patientId); |
|
|
|
|
|
|
|
void deletePatientParentIllnessByPatientId(Long patientId); |
|
|
|
|
|
|
|
void deletePatientPersonalByPatientId(Long patientId); |
|
|
|
|
|
|
|
void batchDeleteByIdCard(@Param("pmsPatientList") List<PmsPatient> pmsPatientList); |
|
|
|
|
|
|
|
void batchInsert(@Param("pmsPatientList") List<PmsPatient> pmsPatientList); |
|
|
|
|
|
|
|
void batchInsertTjbg(@Param("list") List<LdPatientRecord> list); |
|
|
|
|
|
|
|
List<PmsPatientVo.QueryPatientJz> queryPatientJzList(@Param("param") PmsPatientDto.QueryPatientJz param, |
|
|
|
@Param("dataScope") String dataScope, |
|
|
|
@Param("userId") Long userId, |
|
|
|
@Param("userName")String userName); |
|
|
|
@Param("dataScope") String dataScope, |
|
|
|
@Param("userId") Long userId, |
|
|
|
@Param("userName") String userName, |
|
|
|
@Param("deptIdList") List<Long> deptIdList); |
|
|
|
} |
|
|
|
|