AMPMachineRepository.java
370 Bytes
package com.xkl.repository;
import com.xkl.domain.XklAMPMachineEntity;
import org.springframework.data.repository.CrudRepository;
/**
* XklAMPMachineEntity 类的CRUD操作
*
* @see XklAMPMachineEntity
*/
public interface AMPMachineRepository extends CrudRepository<XklAMPMachineEntity, Long> {
public XklAMPMachineEntity findBySecretKey(String secretKey);
}