| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.smartor.domain.PatMedOuthosp; |
| | | import com.smartor.domain.PatMedReq; |
| | | import com.smartor.domain.PatMedRes; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * 患者门诊记录Service接口 |
| | |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface IPatMedOuthospService |
| | | { |
| | | public interface IPatMedOuthospService { |
| | | /** |
| | | * 查询患者门诊记录 |
| | | * |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deletePatMedOuthospById(Long id); |
| | | |
| | | public PatMedRes selectPatMedOuthospCount(@RequestBody PatMedReq patMedReq); |
| | | |
| | | //通过患者ID获取到最新的deptcode |
| | | public PatMedOuthosp getDeptCodeByPatId(PatMedOuthosp patMedOuthosp); |
| | | } |