CZT
2023-08-16 7a14f207f67d6638a7c7fbe93fbccbd5d7645783
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> {
 
}