ReportRepository.java
412 Bytes
package com.xkl.repository;
import org.springframework.data.repository.CrudRepository;
import com.xkl.domain.XklAmpReportEntity;
/**
* AMPReport类的CRUD操作
*
* @see XklAmpReportEntity
*/
public interface ReportRepository extends CrudRepository<XklAmpReportEntity, Long> {
public XklAmpReportEntity findByMd5AndStatus(String md5, Byte status);
public XklAmpReportEntity findById(long id);
}