@@ -146,7 +146,7 @@ public interface ProductDao extends JpaSpecificationExecutor<Product>, JpaReposi
* @param uuid 器件的uuid
* @return List<Product>
*/
- @Query(value = "select p from Product where p.cmpUuId = :uuid")
+ @Query(value = "select p from Product p where p.cmpUuId = :uuid")
List<Product> findByCmpUuId(@Param("uuid") String uuid);
/**