ReportResultRepository.java 421 Bytes
package com.xkl.repository;

import org.springframework.data.repository.CrudRepository;
import  com.xkl.domain.XklAmpReportResultEntity;
import java.util.List;

/**
 * XklAmpReportResultEntity类的CRUD操作
 *
 * @see XklAmpReportResultEntity
 */
public interface ReportResultRepository extends CrudRepository<XklAmpReportResultEntity, Long> {
    public List<XklAmpReportResultEntity> findByReportId(long reportId);
}