修改注释中错误的方法形参名

master
sxile 6 years ago
parent a709c22698
commit 2d639244b2

@ -126,7 +126,7 @@ public class ExcelUtil<T>
/** /**
* excellist * excellist
* *
* @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>
* excellist * excellist
* *
* @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)
{ {
@ -562,7 +561,7 @@ public class ExcelUtil<T>
* @param endCol * @param endCol
*/ */
public void setXSSFPrompt(Sheet sheet, String promptTitle, String promptContent, int firstRow, int endRow, public void setXSSFPrompt(Sheet sheet, String promptTitle, String promptContent, int firstRow, int endRow,
int firstCol, int endCol) int firstCol, int endCol)
{ {
DataValidationHelper helper = sheet.getDataValidationHelper(); DataValidationHelper helper = sheet.getDataValidationHelper();
DataValidationConstraint constraint = helper.createCustomConstraint("DD1"); DataValidationConstraint constraint = helper.createCustomConstraint("DD1");
@ -793,7 +792,6 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param sheetNameSheet
* @param sheetNo sheet * @param sheetNo sheet
* @param index * @param index
*/ */

@ -34,7 +34,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* ID * ID
* *
* @param jobId ID * @param jobLogId ID
* @return * @return
*/ */
@Override @Override

Loading…
Cancel
Save