选煤厂生产管理平台后台代码
dongyukun
2024-12-10 532d0b7f83815ebeb4be9aa1f7a6683ede831b6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.iailab.module.pms.production.work.service;
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.module.pms.production.work.enity.ProdAccidentEntity;
import com.iailab.module.pms.production.work.vo.ProdAccidentPageReqVO;
 
/**
 * 生产事故
 *
 * @author DongYukun
 * @Description
 * @createTime 2023年01月05日 15:13:00
 */
public interface ProdAccidentService {
 
    String create(ProdAccidentEntity createEntity);
 
    String update(ProdAccidentEntity createEntity);
 
    void delete(String id);
 
    ProdAccidentEntity getInfo(String id);
 
    PageResult<ProdAccidentEntity> getPage(ProdAccidentPageReqVO PageReqVO);
}