⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ifilesinfodao.java

📁 java web模拟的简单的一个网络硬盘
💻 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 + -