package cn.autoform.web.mapper.excel;
|
|
import cn.autoform.bean.ExcelLog;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
@Mapper
|
public interface ExcelLogMapper {
|
|
/**
|
* 新增log
|
*/
|
Integer addExcelLog(ExcelLog excelLog);
|
|
/**
|
* 查询所有log
|
*/
|
List<ExcelLog> selectAll(ExcelLog excelLog);
|
|
/**
|
* 修改操作状态
|
*/
|
Integer updateState(ExcelLog excelLog);
|
}
|