WS
2023-08-17 ffbdb60fa78be56eb148e60f4972e163a46825a5
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> {
 
}