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