package com.wgcloud.mapper;
|
|
import com.wgcloud.entity.FileWarnState;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @version v3.3
|
* @ClassName:FileWarnStateDao.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: FileWarnStateDao.java
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
@Repository
|
public interface FileWarnStateMapper {
|
|
public List<FileWarnState> selectAllByParams(Map<String, Object> map) throws Exception;
|
|
public List<FileWarnState> selectByParams(Map<String, Object> params) throws Exception;
|
|
public FileWarnState selectById(String id) throws Exception;
|
|
public Integer countByParams(Map<String, Object> map);
|
|
public void save(FileWarnState FileWarnState) throws Exception;
|
|
public void insertList(List<FileWarnState> recordList) throws Exception;
|
|
public int deleteByFileWarnId(String fileWarnId) throws Exception;
|
|
public int deleteByDate(Map<String, Object> map) throws Exception;
|
|
public int deleteById(String[] id) throws Exception;
|
|
|
}
|