Commit 196aaa9f by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents f521da8e 67592a7f
...@@ -9,5 +9,5 @@ import java.util.List; ...@@ -9,5 +9,5 @@ import java.util.List;
public interface OrderAppointmentDao extends JpaRepository<OrderAppointmentEntity, Integer> { public interface OrderAppointmentDao extends JpaRepository<OrderAppointmentEntity, Integer> {
@Query("from OrderAppointmentEntity a where DATE(a.expectTime) = :date and a.engineerCode in :engineerCodes") @Query("from OrderAppointmentEntity a where DATE(a.expectTime) = :date and a.engineerCode in :engineerCodes")
List<?> findByDateAndEngineerCodeIn(String date, String[] engineerCodes); List<?> findByDateAndEngineerCodeIn(String date, List<?> engineerCodes);
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!