lyh
15 小时以前 58f63d0e061123b15f780d294272d8a461f183db
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
package org.jeecg.modules.eam.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.jeecg.common.api.vo.Result;
import org.jeecg.modules.eam.dto.EamReportProductHazardsDto;
import org.jeecg.modules.eam.entity.EamReportProductHazards;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.request.EamReportAccidentsRegisterQuery;
import org.jeecg.modules.eam.request.EamReportProductHazardsQuery;
 
/**
 * @Description: 产品安全隐患确认
 * @Author: jeecg-boot
 * @Date:   2025-07-17
 * @Version: V1.0
 */
public interface IEamReportProductHazardsService extends IService<EamReportProductHazards> {
 
    /**
     * 分页列表
     * @param page
     * @param eamReportProductHazardsQuery
     * @return
     */
    IPage<EamReportProductHazardsQuery> pageList(Page<EamReportProductHazardsQuery> page, EamReportProductHazardsQuery eamReportProductHazardsQuery);
 
    /**
     * 操作工填报
     * @param eamReportProductHazardsDto
     * @return
     */
    boolean report(EamReportProductHazardsDto eamReportProductHazardsDto);
 
    /**
     * 操作工提交-发起流程
     * @param id
     * @return
     */
    Result<?> submit(String id);
 
    /**
     * 删除
     * @param id
     * @return
     */
    boolean cancelled(String id);
}