Commit c6f400ec by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents c6651339 02a238e7
...@@ -8,6 +8,6 @@ import java.util.List; ...@@ -8,6 +8,6 @@ import java.util.List;
public interface OrderAppointmentDao extends JpaRepository<OrderAppointmentEntity, Integer> { public interface OrderAppointmentDao extends JpaRepository<OrderAppointmentEntity, Integer> {
@Query("from OrderAppointmentEntity a where DATE_FORMAT(a.expectTime, '%Y-%m-%d') = :date and a.engineerCode in :engineerCodes") @Query("from OrderAppointmentEntity a where DATE_FORMAT(a.expectBeginTime, '%Y-%m-%d') = :date and a.engineerCode in :engineerCodes")
List<?> findByDateAndEngineerCodeIn(String date, List<?> 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!