package com.smartor.service;
|
|
import java.util.List;
|
import com.smartor.domain.PatMedPhysical;
|
|
/**
|
* 患者体检记录Service接口
|
*
|
* @author smartor
|
* @date 2023-03-04
|
*/
|
public interface IPatMedPhysicalService
|
{
|
/**
|
* 查询患者体检记录
|
*
|
* @param id 患者体检记录主键
|
* @return 患者体检记录
|
*/
|
public PatMedPhysical selectPatMedPhysicalById(Long id);
|
|
/**
|
* 查询患者体检记录列表
|
*
|
* @param patMedPhysical 患者体检记录
|
* @return 患者体检记录集合
|
*/
|
public List<PatMedPhysical> selectPatMedPhysicalList(PatMedPhysical patMedPhysical);
|
|
/**
|
* 新增患者体检记录
|
*
|
* @param patMedPhysical 患者体检记录
|
* @return 结果
|
*/
|
public int insertPatMedPhysical(PatMedPhysical patMedPhysical);
|
|
/**
|
* 修改患者体检记录
|
*
|
* @param patMedPhysical 患者体检记录
|
* @return 结果
|
*/
|
public int updatePatMedPhysical(PatMedPhysical patMedPhysical);
|
|
/**
|
* 批量删除患者体检记录
|
*
|
* @param ids 需要删除的患者体检记录主键集合
|
* @return 结果
|
*/
|
public int deletePatMedPhysicalByIds(Long[] ids);
|
|
/**
|
* 删除患者体检记录信息
|
*
|
* @param id 患者体检记录主键
|
* @return 结果
|
*/
|
public int deletePatMedPhysicalById(Long id);
|
}
|