Crunchy
2024-04-28 c39517f22b502e2d1ec155beda41162c749f2c26
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
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.mom.dto.ReportPageDto;
import com.yuanchu.mom.pojo.InsReport;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.Map;
 
/**
* @author Administrator
* @description 针对表【ins_report(检验报告)】的数据库操作Service
* @createDate 2024-03-17 22:10:02
*/
public interface InsReportService extends IService<InsReport> {
 
    Map<String,Object> pageInsReport(Page page, ReportPageDto reportPageDto);
 
    void wordToPdf(String path);
 
    int inReport(String url, Integer id);
 
    int upReportUrl(Integer id);
 
    //提交
    int writeReport(Integer id);
 
    //审核
    int examineReport(Integer id, Integer isExamine, String examineTell);
 
    //批准
    int ratifyReport(Integer id, Integer isRatify, String ratifyTell);
 
    int wordInsertUrl(Map<String, Object> map, String url);
}