package com.ltkj.hosp.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ltkj.hosp.domain.TjReportPrint;
|
import com.ltkj.hosp.domain.TjReportTemplate;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 打印记录Mapper接口
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-04-06
|
*/
|
@Mapper
|
public interface TjReportPrintMapper extends BaseMapper<TjReportPrint> {
|
/**
|
* 查询打印记录
|
*
|
* @param id 打印记录主键
|
* @return 打印记录
|
*/
|
public TjReportPrint selectTjReportPrintById(Long id);
|
|
/**
|
* 查询打印记录列表
|
*
|
* @param tjReportPrint 打印记录
|
* @return 打印记录集合
|
*/
|
public List<TjReportPrint> selectTjReportPrintList(TjReportPrint tjReportPrint);
|
|
/**
|
* 新增打印记录
|
*
|
* @param tjReportPrint 打印记录
|
* @return 结果
|
*/
|
public int insertTjReportPrint(TjReportPrint tjReportPrint);
|
|
/**
|
* 修改打印记录
|
*
|
* @param tjReportPrint 打印记录
|
* @return 结果
|
*/
|
public int updateTjReportPrint(TjReportPrint tjReportPrint);
|
|
/**
|
* 删除打印记录
|
*
|
* @param id 打印记录主键
|
* @return 结果
|
*/
|
public int deleteTjReportPrintById(Long id);
|
|
/**
|
* 批量删除打印记录
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteTjReportPrintByIds(Long[] ids);
|
}
|