CZT
2023-08-10 7ac1c19249561ef5cc0bf277ef3c683e7515a146
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> {
}