You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
521 B
33 lines
521 B
package com.java2nb.common.dao;
|
|
|
|
import com.java2nb.common.domain.FileDO;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 文件上传
|
|
* @author xiongxy
|
|
* @email 1179705413@qq.com
|
|
* @date 2019-10-03 15:45:42
|
|
*/
|
|
@Mapper
|
|
public interface FileDao {
|
|
|
|
FileDO get(Long id);
|
|
|
|
List<FileDO> list(Map<String,Object> map);
|
|
|
|
int count(Map<String,Object> map);
|
|
|
|
int save(FileDO file);
|
|
|
|
int update(FileDO file);
|
|
|
|
int remove(Long id);
|
|
|
|
int batchRemove(Long[] ids);
|
|
}
|