package com.yuanchu.limslaboratory.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.yuanchu.limslaboratory.pojo.Enterprise;
|
import com.yuanchu.limslaboratory.pojo.Report;
|
import com.yuanchu.limslaboratory.pojo.vo.ReportVo;
|
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-07
|
*/
|
public interface ReportService extends IService<Report> {
|
|
|
/**
|
* 查询检验报告
|
*
|
* @return
|
*/
|
IPage<ReportVo> selectAllReport(Page<Object> page, Integer status, String name);
|
|
/**
|
* 提交
|
* @param id
|
* @return
|
*/
|
String submit(Integer id);
|
|
/**
|
* 审核
|
* @param name
|
* @param id
|
* @return
|
*/
|
String check(String name, Integer id, Integer result);
|
|
/**
|
* 删除
|
* @param id
|
* @return
|
*/
|
String delreport(Integer id);
|
|
Map<String, Object> getReportContext(String code);
|
|
Enterprise getEnterprise();
|
}
|