shenyijian
2024-09-20 0aa9af7bc8e34d539c990c5d714e24092a2d53e7
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sg/mapper/SgProgressReportMapper.java
@@ -1,6 +1,7 @@
package cn.gistack.sm.sg.mapper;
import cn.gistack.sm.sg.DO.SgProgressReportDO;
import cn.gistack.sm.sg.DO.SgReportUserDO;
import cn.gistack.sm.sg.DTO.ProjectSearchDTO;
import cn.gistack.sm.sg.VO.SgProgressReportVO;
import cn.gistack.sm.sg.VO.SgStepReportVO;
@@ -9,6 +10,7 @@
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
/**
 * <p>
@@ -25,8 +27,21 @@
   SgProgressReportVO queryById(@Param("id") String id);
   List<SgProgressReportVO> queryList(@Param("dto") ProjectSearchDTO searchDTO);
   List<SgProgressReportVO> queryList(IPage<SgProgressReportVO> page,@Param("dto") ProjectSearchDTO searchDTO);
   Long countList(@Param("dto") ProjectSearchDTO searchDTO);
   List<SgStepReportVO> selectByDeviceId(@Param("deviceId") Long gxDeviceId);
   List<SgProgressReportVO> statusCount(@Param("dto") ProjectSearchDTO searchDTO);
   List<Map<String, Object>> getUserByIds(@Param("ids") List<Long> ids);
   List<SgProgressReportVO> queryPageListAll(@Param("page") IPage<SgProgressReportVO> page, @Param("dto") ProjectSearchDTO searchDTO);
   Long selectProframId(Long deviceId);
   List<SgReportUserDO> selectProcessUserByProjectId(@Param("programId") Long programId);
   List<Map<String, Object>> getRoleByIds(@Param("ids")List<Long> rids);
}