| | |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.PatMedOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.PatMedOperationMapper; |
| | | import com.smartor.domain.PatMedOperation; |
| | | import com.smartor.service.IPatMedOperationService; |
| | | |
| | | /** |
| | | * 患者手术记录Service业务层处理 |
| | | * |
| | | * |
| | | * @author lihu |
| | | * @date 2024-08-05 |
| | | * @date 2025-02-21 |
| | | */ |
| | | @Service |
| | | public class PatMedOperationServiceImpl implements IPatMedOperationService |
| | | public class PatMedOperationServiceImpl implements IPatMedOperationService |
| | | { |
| | | @Autowired |
| | | private PatMedOperationMapper patMedOperationMapper; |
| | | |
| | | /** |
| | | * 查询患者手术记录 |
| | | * |
| | | * |
| | | * @param id 患者手术记录主键 |
| | | * @return 患者手术记录 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询患者手术记录列表 |
| | | * |
| | | * |
| | | * @param patMedOperation 患者手术记录 |
| | | * @return 患者手术记录 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增患者手术记录 |
| | | * |
| | | * |
| | | * @param patMedOperation 患者手术记录 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改患者手术记录 |
| | | * |
| | | * |
| | | * @param patMedOperation 患者手术记录 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除患者手术记录 |
| | | * |
| | | * |
| | | * @param ids 需要删除的患者手术记录主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除患者手术记录信息 |
| | | * |
| | | * |
| | | * @param id 患者手术记录主键 |
| | | * @return 结果 |
| | | */ |