动火作业 service层新增措施相关接口

pull/4/head
fangjiakai 2024-01-19 11:32:31 +08:00
parent 8c5051aaaf
commit 498e9adb9c
1 changed files with 9 additions and 0 deletions

View File

@ -24,4 +24,13 @@ public interface HotworkService {
void cancel(PageData pd)throws Exception;
PageData findById(PageData pd) throws Exception;
//获取所有措施
List<PageData> listAllMeasures() throws Exception;
//获取需要签字的措施
List<PageData> listAllMeasuresForSign(PageData pd) throws Exception;
//获取所有签字完成的措施
List<PageData> listSignFinishMeasures(PageData pd) throws Exception;
}