Fixiaobai
2023-09-04 dd2554435b9ced61e2a6a06627145fca3bf2685b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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();
}