CZT
2023-10-18 246752d298f9955b1112c3028f271d546fd3bc3b
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> {
}