YYC
2023-08-28 ba9562289ab7e67c9eeca4d518ddbb3e68ed5dc2
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> {
}