| | |
| | | * 根据信息获取仓内抓拍信息 |
| | | * |
| | | * @param deptId |
| | | * @param start |
| | | * @param end |
| | | * @param startTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @Query("from Fz40SecSnapDepot where deptId=:deptId and updateTime >=:start and updateTime <=:end order by id ") |
| | | List<Fz40SecSnapDepot> listSnapDepotData(@Param("deptId") String deptId, @Param("start") Date start, @Param("end") Date end); |
| | | @Query("from Fz40SecSnapDepot where deptId=:deptId and updateTime >=:startTime and updateTime <=:endTime order by id ") |
| | | List<Fz40SecSnapDepot> listSnapDepotData(@Param("deptId") String deptId, @Param("startTime") Date startTime, @Param("endTime") Date endTime); |
| | | |
| | | } |