ws
2023-09-21 c972846d9e2c591120ec55c5e1feb277b10969f0
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> {
}