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);
|
}
|