付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.wgcloud.mapper;
 
import com.wgcloud.entity.FileWarnInfo;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
/**
 * @version v3.3
 * @ClassName:FileWarnInfoMapper.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: FileWarnInfoDao.java
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
@Repository
public interface FileWarnInfoMapper {
 
    public List<FileWarnInfo> selectAllByParams(Map<String, Object> map) throws Exception;
 
    public List<FileWarnInfo> selectByParams(Map<String, Object> params) throws Exception;
 
    public FileWarnInfo selectById(String id) throws Exception;
 
    public void save(FileWarnInfo FileWarnInfo) throws Exception;
 
    public void insertList(List<FileWarnInfo> recordList) throws Exception;
 
    public void updateList(List<FileWarnInfo> recordList) throws Exception;
 
    public int deleteById(String[] id) throws Exception;
 
    public int deleteByHostName(Map<String, Object> map) throws Exception;
 
    public Integer countByParams(Map<String, Object> params) throws Exception;
 
    public int updateById(FileWarnInfo FileWarnInfo) throws Exception;
}