liusheng
2024-09-04 9526971c403417c1c007804f24884c443b9e6cd7
smartor/src/main/java/com/smartor/service/IPatMedOuthospService.java
@@ -1,7 +1,12 @@
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接口
@@ -9,8 +14,7 @@
 * @author smartor
 * @date 2023-03-04
 */
public interface IPatMedOuthospService
{
public interface IPatMedOuthospService {
    /**
     * 查询患者门诊记录
     * 
@@ -58,4 +62,9 @@
     * @return 结果
     */
    public int deletePatMedOuthospById(Long id);
    public PatMedRes selectPatMedOuthospCount(@RequestBody PatMedReq patMedReq);
    //通过患者ID获取到最新的deptcode
    public PatMedOuthosp getDeptCodeByPatId(PatMedOuthosp patMedOuthosp);
}