package com.yuanchu.limslaboratory.service.impl;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.yuanchu.limslaboratory.mapper.ReportMapper;
|
import com.yuanchu.limslaboratory.pojo.Report;
|
import com.yuanchu.limslaboratory.pojo.vo.ReportVo;
|
import com.yuanchu.limslaboratory.service.ReportService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-07
|
*/
|
@Service
|
public class ReportServiceImpl extends ServiceImpl<ReportMapper, Report> implements ReportService {
|
|
@Autowired
|
private ReportMapper reportMapper;
|
|
/**
|
* 查询检验报告
|
* @return
|
*/
|
@Override
|
public IPage<ReportVo> selectAllReport(Page<Object> page, Integer status, String name) {
|
return reportMapper.selectAllReport(page, status, name);
|
}
|
|
}
|