package com.changhong.epc.form.mapper.tenant.ExcelLogMapper; import com.changhong.epc.bean.parsing.ExcelLog; import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; import java.util.List; public interface ExcelLobMapper extends MybatisBaseMapper { Integer addExcelLog(ExcelLog excelLog); List selectEmpLog(ExcelLog excelLog); Integer updateExcelLog( ExcelLog excelLog); }