|
|
@ -1,5 +1,8 @@ |
|
|
|
package com.ccsens.carbasics.service; |
|
|
|
|
|
|
|
import com.ccsens.carbasics.bean.dto.PatientDto; |
|
|
|
import com.ccsens.carbasics.bean.vo.PatientVo; |
|
|
|
import com.github.pagehelper.PageInfo; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Propagation; |
|
|
@ -10,4 +13,13 @@ import org.springframework.transaction.annotation.Transactional; |
|
|
|
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|
|
|
public class FirstAidService implements IFirstAidService{ |
|
|
|
|
|
|
|
@Override |
|
|
|
public PageInfo<PatientVo.QueryPatientList> querySelf(PatientDto.QueryPatient param, Long userId) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void savePatient(PatientDto.SavePatient param, Long userId) { |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|