修改注释与方法参数对应

master
ziry 6 years ago committed by Limy
parent 5648e108bb
commit 71678947b7

@ -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)

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

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

@ -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

@ -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)
{

@ -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

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

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

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

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

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

Loading…
Cancel
Save