package com.zhengmeng.ocrplatform.extract;

import org.springframework.data.jpa.repository.JpaRepository;

import java.util.List;

public interface OcrBusinessProfileFeedbackRepository extends JpaRepository<OcrBusinessProfileFeedbackEntity, Long> {
    List<OcrBusinessProfileFeedbackEntity> findByProfileIdOrderByCreatedAtDesc(String profileId);
}
