增加商家菜单Jpa接口
This commit is contained in:
parent
6cf049cf48
commit
e646df6582
@ -0,0 +1,11 @@
|
|||||||
|
package com.example.springdemo.dao;
|
||||||
|
|
||||||
|
import com.example.springdemo.entities.Dishes;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface DishesRepository
|
||||||
|
extends JpaRepository<Dishes, Long> {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user