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