package com.ltkj.hosp.service;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ltkj.hosp.domain.TjReceivingRecord;
|
import com.ltkj.hosp.domain.TjReportPrint;
|
|
/**
|
* 打印记录Service接口
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-04-06
|
*/
|
public interface ITjReportPrintService extends IService<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 ids 需要删除的打印记录主键集合
|
* @return 结果
|
*/
|
public int deleteTjReportPrintByIds(Long[] ids);
|
|
/**
|
* 删除打印记录信息
|
*
|
* @param id 打印记录主键
|
* @return 结果
|
*/
|
public int deleteTjReportPrintById(Long id);
|
}
|