shenyijian
2024-06-18 402ff1aeac9bb33e6d8ff04913cbf1b0364df2a6
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
package cn.gistack.sm.sg.mapper;
 
import cn.gistack.sm.sg.DO.SgProgressReportDO;
import cn.gistack.sm.sg.DTO.ProjectSearchDTO;
import cn.gistack.sm.sg.VO.SgProgressReportVO;
import cn.gistack.sm.sg.VO.SgStepReportVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 施工进度上报表 Mapper 接口
 * </p>
 *
 * @author shenyijian
 * @since 2024-06-15 10:22:08
 */
public interface SgProgressReportMapper extends BaseMapper<SgProgressReportDO> {
 
    List<SgProgressReportVO> queryPageList(IPage<SgProgressReportVO> page, @Param("dto") ProjectSearchDTO searchDTO);
 
    SgProgressReportVO queryById(@Param("id") String id);
 
    List<SgProgressReportVO> queryList(@Param("dto") ProjectSearchDTO searchDTO);
 
    Long countList(@Param("dto") ProjectSearchDTO searchDTO);
 
    List<SgStepReportVO> selectByDeviceId(@Param("deviceId") Long gxDeviceId);
}