修改注释与方法参数对应

pull/60/head
ziry 2018-12-29 16:28:54 +08:00
parent b66097c004
commit d22fa29b65
11 changed files with 19 additions and 19 deletions

View File

@ -290,7 +290,7 @@ public class Convert
/**
* Integer<br>
*
* @param split
* @param str
* @return
*/
public static Integer[] toIntArray(String str)
@ -301,7 +301,7 @@ public class Convert
/**
* Long<br>
*
* @param split
* @param str
* @return
*/
public static Long[] toLongArray(String str)
@ -335,8 +335,8 @@ public class Convert
/**
* Long<br>
*
* @param isIgnoreConvertError null
* @param values
* @param split
* @param str
* @return
*/
public static Long[] toLongArray(String split, String str)
@ -358,7 +358,7 @@ public class Convert
/**
* String<br>
*
* @param split
* @param str
* @return
*/
public static String[] toStrArray(String str)

View File

@ -10,10 +10,10 @@ import java.math.BigDecimal;
public class Arith
{
// 默认除法运算精度
/** 默认除法运算精度 */
private static final int DEF_DIV_SCALE = 10;
// 这个类不能实例化
/** 这个类不能实例化 */
private Arith()
{
}

View File

@ -85,7 +85,7 @@ public class IpUtils
/**
* IPv4
*
* @param IPv4
* @param text IPv4
* @return byte
*/
public static byte[] textToNumericFormatV4(String text)

View File

@ -16,7 +16,8 @@ public class FileUtils
/**
* byte
*
* @param filename
* @param filePath
* @param os
* @return
*/
public static void writeBytes(String filePath, OutputStream os) throws IOException

View File

@ -73,9 +73,9 @@ public class DataScopeAspect
/**
*
*
* @param da
* @return
* @param joinPoint
* @param user
* @param alias
*/
public static void dataScopeFilter(JoinPoint joinPoint, SysUser user, String alias)
{

View File

@ -121,8 +121,8 @@ public class LogAspect
/**
* Controller
*
* @param joinPoint
* @return
* @param log
* @param operLog
* @throws Exception
*/
public void getControllerMethodDescription(Log log, SysOperLog operLog) throws Exception

View File

@ -35,7 +35,7 @@ public class AsyncManager
/**
*
*
* @param task
* @param task
*/
public void execute(TimerTask task)
{

View File

@ -91,7 +91,6 @@ public class FileUploadUtils
*
* @param baseDir
* @param file
* @param needDatePathAndRandomName
* @param extension
* @return
* @throws FileSizeLimitExceededException

View File

@ -13,7 +13,7 @@ public class PermissionUtils
/**
*
*
* @param errorMsg
* @param permissionsStr
* @return
*/
public static String getMsg(String permissionsStr)

View File

@ -39,7 +39,7 @@ public interface SysJobMapper
* @param jobId ID
* @return
*/
public int deleteJobById(SysJob job);
public int deleteJobById(Long jobId);
/**
*

View File

@ -13,7 +13,7 @@ public interface SysUserMapper
/**
*
*
* @param user
* @param sysUser
* @return
*/
public List<SysUser> selectUserList(SysUser sysUser);