Skip to content

Instantly share code, notes, and snippets.

@jeetprksh
Created August 5, 2018 14:26
Show Gist options
  • Save jeetprksh/9c8ee9435cf35655e2a0cc559c931cc9 to your computer and use it in GitHub Desktop.
Save jeetprksh/9c8ee9435cf35655e2a0cc559c931cc9 to your computer and use it in GitHub Desktop.
package com.jeetprksh.h2.boot.dao;
import com.jeetprksh.h2.boot.entity.ApplicationSetting;
import org.springframework.data.repository.CrudRepository;
public interface AppSettingRepository extends CrudRepository<ApplicationSetting, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment