1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.changhong.epc.form.service.excel;
|
| import com.changhong.epc.bean.parsing.ExcelLog;
|
| import java.util.List;
|
| public interface ExcelLogService {
|
| Integer addExcelLog( ExcelLog excelLog);
|
| List<ExcelLog> selectEmpLog( ExcelLog excelLog);
|
| Integer updateExcelLog( ExcelLog excelLog);
|
|
| }
|
|