ifilesinfodao.java
来自「java web模拟的简单的一个网络硬盘」· Java 代码 · 共 23 行
JAVA
23 行
package com.dark.nethd.dao;
import java.util.List;
import org.springframework.dao.DataAccessException;
import com.dark.nethd.bean.FilesInfo;
public interface IFilesInfoDao {
public FilesInfo findFilesInfoByID(Integer id);
public List findFilesInfoByUserID(Integer userId)
throws DataAccessException;
public FilesInfo saveFilesInfo(FilesInfo fi) throws DataAccessException;
public boolean deleteFilesInfoByUserIdAndId(Integer fid, Integer userId)
throws DataAccessException;
public Integer getAllFilesSizeByUserId(Integer userId)
throws DataAccessException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?