麻烦大神帮忙看下,下面的写法有问题么?一直查不出数据来
@Repository public interface PeRepository extends Neo4jRepository<Pe, Long> {
/**
* 根据OID查询Pe
* @param oid
* @return
*/
Pe findByOid(String oid);
}
Pe pe=peRepository.findByOid(“oid1”);
3 回复