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

master
sxile 6 years ago
parent a709c22698
commit 2d639244b2

@ -53,7 +53,7 @@ import com.ruoyi.common.utils.reflect.ReflectUtils;
/** /**
* Excel * Excel
* *
* @author ruoyi * @author ruoyi
*/ */
public class ExcelUtil<T> public class ExcelUtil<T>
@ -125,8 +125,8 @@ 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
@ -136,9 +136,9 @@ 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
@ -281,7 +281,7 @@ public class ExcelUtil<T>
/** /**
* listexcel * listexcel
* *
* @param list * @param list
* @param sheetName * @param sheetName
* @return * @return
@ -294,7 +294,7 @@ public class ExcelUtil<T>
/** /**
* listexcel * listexcel
* *
* @param sheetName * @param sheetName
* @return * @return
*/ */
@ -306,7 +306,7 @@ public class ExcelUtil<T>
/** /**
* listexcel * listexcel
* *
* @return * @return
*/ */
public AjaxResult exportExcel() public AjaxResult exportExcel()
@ -373,10 +373,9 @@ public class ExcelUtil<T>
/** /**
* excel * excel
* *
* @param index * @param index
* @param row * @param row
* @param cell
*/ */
public void fillExcelData(int index, Row row) public void fillExcelData(int index, Row row)
{ {
@ -401,7 +400,7 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param wb * @param wb
* @return * @return
*/ */
@ -459,7 +458,7 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param value * @param value
* @param attr * @param attr
* @param cell * @param cell
@ -552,7 +551,7 @@ public class ExcelUtil<T>
/** /**
* POI XSSFSheet * POI XSSFSheet
* *
* @param sheet * @param sheet
* @param promptTitle * @param promptTitle
* @param promptContent * @param promptContent
@ -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");
@ -575,7 +574,7 @@ public class ExcelUtil<T>
/** /**
* ,. * ,.
* *
* @param sheet sheet. * @param sheet sheet.
* @param textlist * @param textlist
* @param firstRow * @param firstRow
@ -609,7 +608,7 @@ public class ExcelUtil<T>
/** /**
* 0=,1=,2= * 0=,1=,2=
* *
* @param propertyValue * @param propertyValue
* @param converterExp * @param converterExp
* @return * @return
@ -638,7 +637,7 @@ public class ExcelUtil<T>
/** /**
* =0,=1,=2 * =0,=1,=2
* *
* @param propertyValue * @param propertyValue
* @param converterExp * @param converterExp
* @return * @return
@ -676,7 +675,7 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param filename * @param filename
*/ */
public String getAbsoluteFile(String filename) public String getAbsoluteFile(String filename)
@ -692,7 +691,7 @@ public class ExcelUtil<T>
/** /**
* bean * bean
* *
* @param vo * @param vo
* @param field * @param field
* @param excel * @param excel
@ -723,7 +722,7 @@ public class ExcelUtil<T>
/** /**
* get * get
* *
* @param o * @param o
* @param name * @param name
* @return value * @return value
@ -792,8 +791,7 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param sheetNameSheet
* @param sheetNo sheet * @param sheetNo sheet
* @param index * @param index
*/ */
@ -814,7 +812,7 @@ public class ExcelUtil<T>
/** /**
* *
* *
* @param row * @param row
* @param column * @param column
* @return * @return
@ -871,4 +869,4 @@ public class ExcelUtil<T>
} }
return val; return val;
} }
} }

@ -10,7 +10,7 @@ import com.ruoyi.quartz.service.ISysJobLogService;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */
@Service @Service
@ -21,7 +21,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* quartz * quartz
* *
* @param jobLog * @param jobLog
* @return * @return
*/ */
@ -33,8 +33,8 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* ID * ID
* *
* @param jobId ID * @param jobLogId ID
* @return * @return
*/ */
@Override @Override
@ -45,7 +45,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* *
* *
* @param jobLog * @param jobLog
*/ */
@Override @Override
@ -56,7 +56,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* *
* *
* @param ids ID * @param ids ID
* @return * @return
*/ */
@ -68,7 +68,7 @@ public class SysJobLogServiceImpl implements ISysJobLogService
/** /**
* *
* *
* @param jobId ID * @param jobId ID
*/ */
@Override @Override
@ -85,4 +85,4 @@ public class SysJobLogServiceImpl implements ISysJobLogService
{ {
jobLogMapper.cleanJobLog(); jobLogMapper.cleanJobLog();
} }
} }
Loading…
Cancel
Save