CZT
2023-08-15 94d050025f9a45db83fd421beae66e0918261121
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> {
 
}