仪表盘
版本库
文件存储
活动
搜索
登录
陈战涛
/
igds-api
分支自
igds-api
概况
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
提交 人员 设备 数据上报
WS
2023-08-17
ffbdb60fa78be56eb148e60f4972e163a46825a5
[~czt/igds-api.git]
/
src
/
main
/
java
/
com
/
fzzy
/
api
/
view
/
repository
/
ApiListRep.java
1
2
3
4
5
6
7
8
9
10
package com.fzzy.api.view.repository;
import com.fzzy.api.entity.ApiList;
import org.springframework.data.jpa.repository.JpaRepository;
public interface ApiListRep extends JpaRepository<ApiList, Integer> {
}