czt
2025-06-19 8cac18be98d4ef86aaf42eef3d645cd24962c5af
src/main/java/com/fzzy/api/view/repository/Api1111Rep.java
@@ -51,4 +51,12 @@
     */
    @Query("from Api1111 where kqdm=:kqdm and zhgxsj >=:start and zhgxsj <:end order by zhgxsj ")
    List<Api1111> findPushDataTime(@Param("kqdm") String kqdm, @Param("start") Date start, @Param("end") Date end);
    /**
     * 根据业务ID获取监控点位信息
     * @param bizId
     * @return
     */
    @Query("from Api1111 where bizId=:bizId")
    List<Api1111> getApi1111ByBizId(@Param("bizId") String bizId);
}