package com.ltkj.hosp.service;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ltkj.common.core.domain.AjaxResult;
|
import com.ltkj.hosp.domain.TjReport;
|
|
/**
|
* 体检报告存储Service接口
|
*
|
* @author ltkj
|
* @date 2022-12-06
|
*/
|
public interface ITjReportService extends IService<TjReport> {
|
/**
|
* 查询体检报告存储
|
*
|
* @param reId 体检报告存储主键
|
* @return 体检报告存储
|
*/
|
public TjReport selectTjReportByReId(Long reId);
|
|
/**
|
* 查询体检报告存储列表
|
*
|
* @param tjReport 体检报告存储
|
* @return 体检报告存储集合
|
*/
|
public List<TjReport> selectTjReportList(TjReport tjReport);
|
|
/**
|
* 新增体检报告存储
|
*
|
* @param tjReport 体检报告存储
|
* @return 结果
|
*/
|
public int insertTjReport(TjReport tjReport);
|
|
/**
|
* 修改体检报告存储
|
*
|
* @param tjReport 体检报告存储
|
* @return 结果
|
*/
|
public int updateTjReport(TjReport tjReport);
|
|
/**
|
* 批量删除体检报告存储
|
*
|
* @param reIds 需要删除的体检报告存储主键集合
|
* @return 结果
|
*/
|
public int deleteTjReportByReIds(Long[] reIds);
|
|
/**
|
* 删除体检报告存储信息
|
*
|
* @param reId 体检报告存储主键
|
* @return 结果
|
*/
|
public int deleteTjReportByReId(Long reId);
|
|
|
public AjaxResult getTjReport(String tjNumber);
|
|
Integer getSelectCount(Wrapper<TjReport> queryWrapper);
|
|
/**
|
* 批量生成体检报告
|
* @param tjNumbers 体检号集合
|
* @return
|
*/
|
AjaxResult makeBatchReport(List<String> tjNumbers);
|
}
|