| | |
| | | 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.EamReportAccidentsRegisterDto; |
| | | 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; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 产品安全隐患确认 |
| | |
| | | Result<?> submit(String id); |
| | | |
| | | /** |
| | | * 流程审核 |
| | | * @param eamReportProductHazardsDto |
| | | */ |
| | | Result<?> audit(EamReportProductHazardsDto eamReportProductHazardsDto); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean cancelled(String id); |
| | | |
| | | /** |
| | | * 产品安全隐患确认打印 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | List<EamReportProductHazardsDto> findListByIds(String ids); |
| | | } |