zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package com.changhong.epc.form.mapper.tenant.ExcelLogMapper;
Z 2
3 import com.changhong.epc.bean.parsing.ExcelLog;
4 import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
5
6 import java.util.List;
7
8 public interface ExcelLobMapper  extends MybatisBaseMapper<ExcelLog> {
9
10     Integer addExcelLog(ExcelLog excelLog);
11
12     List<ExcelLog>  selectEmpLog(ExcelLog excelLog);
13
14     Integer updateExcelLog( ExcelLog excelLog);
15 }