|
|
@@ -74,7 +74,7 @@ public interface OrderDao extends JpaSpecificationExecutor<Order>, JpaRepository
|
|
|
* @param status the status
|
|
|
* @return orders
|
|
|
*/
|
|
|
- @Query(nativeQuery = true, value="selcet * from trade$order a where a.or_status >=:status ")
|
|
|
+ @Query(nativeQuery = true, value="select * from trade$order a where a.or_status >=:status ")
|
|
|
List<Order> findByAfterStatus(@Param("status") Integer status);
|
|
|
|
|
|
/**
|