userEntity 생성
생성자 통해서 가능
reportService
public void saveReport(RecordEntity recordEntity, String recognized, double score) {
ReportEntity reportEntity = ReportEntity.create(recordEntity, recognized, score);
reportRepository.save(reportEntity);
}
Record