YYC
2023-08-21 2b63170e6ec11246a5029ea74340adb1b7d2f1a9
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> {
 
}