修改注释与方法参数对应

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

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

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

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

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

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

@ -121,8 +121,8 @@ public class LogAspect
/** /**
* Controller * Controller
* *
* @param joinPoint * @param log
* @return * @param operLog
* @throws Exception * @throws Exception
*/ */
public void getControllerMethodDescription(Log log, SysOperLog 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) public void execute(TimerTask task)
{ {

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

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

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

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

Loading…
Cancel
Save