CZT
2023-08-07 7c8d42e0ff3e8d0be0521a4867dc4e1827c1f3b2
1
2
3
4
5
6
7
8
9
10
package com.fzzy.api.view.repository;
 
 
import com.fzzy.api.entity.ApiList;
 
import org.springframework.data.jpa.repository.JpaRepository;
 
 
public interface ApiListRep extends JpaRepository<ApiList, Integer> {
}