@@ -409,7 +409,7 @@ public interface GoodsDao extends JpaSpecificationExecutor<Goods>, JpaRepository
* @param storeUuid 店铺UUID
* @return the set
*/
- @Query(value = "select distinct g.kindUuid from Goods g where g.storeid = :storeUuid and g.status=601")
+ @Query(value = "select distinct g.kindUuid from Goods g where g.storeid = :storeUuid and g.status=601 and g.kindUuid is not null")
Set<Long> findAllKindsByStoreUuid(@Param("storeUuid") String storeUuid);
/**