| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | 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); |
| | | } |