shenyijian
2024-06-20 b51fc02e94099f3419781cb59b3a6d8762bddaf3
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sg/service/SgProgressReportService.java
@@ -7,6 +7,9 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
import java.util.Map;
/**
 * <p>
 * 施工进度上报表 服务类
@@ -26,4 +29,16 @@
   void approval(ApprovalDTO approvalDTO);
   void updateReport(SgProgressReportDO sgProgressReportDO);
   List<SgProgressReportVO> queryList(ProjectSearchDTO searchDTO);
   Map<String, Long> countList(ProjectSearchDTO searchDTO);
   Map<String, Long> statusCount(ProjectSearchDTO searchDTO);
   boolean checkStep(Long deviceId, Long stepId);
   IPage<SgProgressReportVO> progressPage(IPage<SgProgressReportVO> page, ProjectSearchDTO searchDTO);
   String getDeviceReport(Long deviceId, Long stepId);
}