You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package Log.repo; |
|
|
|
import Log.LogEntity; |
|
import com.hypaas.db.JpaRepository; |
|
|
|
public class LogEntityRepository extends JpaRepository<LogEntity> { |
|
|
|
public LogEntityRepository() { |
|
super(LogEntity.class); |
|
} |
|
}
|
|
|