|
|
|
@ -16,7 +16,7 @@ import java.util.Date;
|
|
|
|
|
**/
|
|
|
|
|
public interface WmsIbCheckPlanRepository extends BaseRepository<WmsIbCheckPlan, Long> {
|
|
|
|
|
|
|
|
|
|
@Query("select icp from WmsIbCheckPlan icp where icp.partNo =:partNo and startDate<=:date and endDate>=:date")
|
|
|
|
|
@Query("select icp from WmsIbCheckPlan icp where icp.partNo =:partNo and icp.startDate<=:date and icp.endDate>=:date")
|
|
|
|
|
WmsIbCheckPlan findWmsIbCheckPlanByPartNoAndTime(@Param("partNo") String partNo, @Param("date") String date);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|