📄 ifilesinfodao.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -