package com.fzzy.async.fzzy61.repository; import com.fzzy.async.fzzy61.entity.Fz61SecCamera; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import java.util.List; /** * @Author:YAN */ public interface Fzzy61Sync1311Rep extends JpaRepository { /** * 根据时间段查询粮情数据 * * @param deptId * @return */ @Query("from Fz61SecCamera where deptId =:deptId ") List findDateByDeptId(@Param("deptId") String deptId); }