ke
2024-07-19 08a962d2925baa255207fdf979e6fee794f1773b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package cn.gistack.sm.sg.service;
 
import cn.gistack.sm.sg.DO.SgProgressReportDO;
import cn.gistack.sm.sg.DTO.ApprovalDTO;
import cn.gistack.sm.sg.DTO.ProjectSearchDTO;
import cn.gistack.sm.sg.VO.SgProgressReportVO;
import cn.gistack.sm.sg.VO.SgReportVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 施工进度上报表 服务类
 * </p>
 *
 * @author shenyijian
 * @since 2024-06-15 10:22:08
 */
public interface SgProgressReportService extends IService<SgProgressReportDO> {
 
    IPage<SgProgressReportVO> queryPageList(IPage<SgProgressReportVO> page, ProjectSearchDTO searchDTO);
 
    IPage<SgProgressReportVO> queryPageListAll(IPage<SgProgressReportVO> page, ProjectSearchDTO searchDTO);
 
    void add(SgProgressReportDO sgProgressReportDO);
 
    SgProgressReportVO detail(String id);
 
    void approval(ApprovalDTO approvalDTO);
 
    void updateReport(SgProgressReportDO sgProgressReportDO);
 
    List<SgProgressReportVO> queryList(ProjectSearchDTO searchDTO);
 
    Map<String, Long> countList(ProjectSearchDTO searchDTO);
 
    Map<String, Long> countListAll(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);
 
 
    SgReportVO getDeviceReportcopy(Long deviceId, Long stepId);
}