| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 施工进度上报表 服务类 |
| | |
| | | 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); |
| | | } |