XklApiKeyRespository.java 260 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 package com.xkl.repository; import com.xkl.domain.XklApiKeyEntity; import org.springframework.data.repository.CrudRepository; /** * Created by win7 on 2016/11/20. */ public interface XklApiKeyRespository extends CrudRepository<XklApiKeyEntity, Long> { }