修改注释

This commit is contained in:
wangjianlong 2019-10-09 12:42:22 +08:00
parent b2cbc3b28c
commit 01de32cc58
2 changed files with 959 additions and 961 deletions

View File

@ -126,7 +126,7 @@ public class ExcelUtil<T>
/** /**
* 对excel表单默认第一个索引名转换成list * 对excel表单默认第一个索引名转换成list
* *
* @param input 输入流 * @param is 输入流
* @return 转换后集合 * @return 转换后集合
*/ */
public List<T> importExcel(InputStream is) throws Exception public List<T> importExcel(InputStream is) throws Exception
@ -138,7 +138,7 @@ public class ExcelUtil<T>
* 对excel表单指定表格索引名转换成list * 对excel表单指定表格索引名转换成list
* *
* @param sheetName 表格索引名 * @param sheetName 表格索引名
* @param input 输入流 * @param is 输入流
* @return 转换后集合 * @return 转换后集合
*/ */
public List<T> importExcel(String sheetName, InputStream is) throws Exception public List<T> importExcel(String sheetName, InputStream is) throws Exception
@ -376,7 +376,6 @@ public class ExcelUtil<T>
* *
* @param index 序号 * @param index 序号
* @param row 单元格行 * @param row 单元格行
* @param cell 类型单元格
*/ */
public void fillExcelData(int index, Row row) public void fillExcelData(int index, Row row)
{ {
@ -793,7 +792,6 @@ public class ExcelUtil<T>
/** /**
* 创建工作表 * 创建工作表
* *
* @param sheetName指定Sheet名称
* @param sheetNo sheet数量 * @param sheetNo sheet数量
* @param index 序号 * @param index 序号
*/ */

View File

@ -34,7 +34,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* 通过调度任务日志ID查询调度信息 * 通过调度任务日志ID查询调度信息
* *
* @param jobId 调度任务日志ID * @param jobLogId 调度任务日志ID
* @return 调度任务日志对象信息 * @return 调度任务日志对象信息
*/ */
@Override @Override