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.ReportCheckVo;
|
import com.yuanchu.limslaboratory.service.ReportCheckService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-07
|
*/
|
@Service
|
public class ReportCheckServiceImpl extends ServiceImpl<ReportMapper, Report> implements ReportCheckService {
|
|
@Autowired
|
private ReportMapper inspectionReportMapper;
|
|
|
/**
|
* 项目审核表查询
|
* @return
|
*/
|
@Override
|
public IPage<ReportCheckVo> selectAllReportCheck(Page<Object> page, Integer status, String name) {
|
return inspectionReportMapper.selectAllReportCheck(page, status, name);
|
}
|
}
|