修复参数注释

pull/2/head
Sxile 2020-07-23 14:54:11 +08:00
parent 52d48fa63e
commit be778ba370
8 changed files with 54 additions and 54 deletions

View File

@ -109,7 +109,7 @@ public class RedisCache
* List * List
* *
* @param key * @param key
* @param values List * @param dataList List
* @return * @return
*/ */
public <T> long setCacheList(final String key, final List<T> dataList) public <T> long setCacheList(final String key, final List<T> dataList)

View File

@ -89,7 +89,7 @@ public class FileUploadUtils
* *
* @param baseDir * @param baseDir
* @param file * @param file
* @param extension * @param allowedExtension
* @return * @return
* @throws FileSizeLimitExceededException * @throws FileSizeLimitExceededException
* @throws FileNameLengthLimitExceededException * @throws FileNameLengthLimitExceededException

View File

@ -96,7 +96,7 @@ public class DataScopeAspect
* *
* @param joinPoint * @param joinPoint
* @param user * @param user
* @param alias * @param userAlias
*/ */
public static void dataScopeFilter(JoinPoint joinPoint, SysUser user, String deptAlias, String userAlias) public static void dataScopeFilter(JoinPoint joinPoint, SysUser user, String deptAlias, String userAlias)
{ {

View File

@ -47,7 +47,7 @@ public abstract class RepeatSubmitInterceptor extends HandlerInterceptorAdapter
/** /**
* *
* *
* @param httpServletRequest * @param request
* @return * @return
* @throws Exception * @throws Exception
*/ */

View File

@ -114,7 +114,7 @@ public class TokenService
/** /**
* 20 * 20
* *
* @param token * @param loginUser
* @return * @return
*/ */
public void verifyToken(LoginUser loginUser) public void verifyToken(LoginUser loginUser)

View File

@ -197,7 +197,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param column * @param columns
* @return * @return
*/ */
public static HashSet<String> getImportList(List<GenTableColumn> columns) public static HashSet<String> getImportList(List<GenTableColumn> columns)
@ -234,7 +234,7 @@ public class VelocityUtils
/** /**
* ID * ID
* *
* @param options * @param paramsObj
* @return ID * @return ID
*/ */
public static String getParentMenuId(JSONObject paramsObj) public static String getParentMenuId(JSONObject paramsObj)
@ -249,7 +249,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreecode(JSONObject paramsObj) public static String getTreecode(JSONObject paramsObj)
@ -264,7 +264,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeParentCode(JSONObject paramsObj) public static String getTreeParentCode(JSONObject paramsObj)
@ -279,7 +279,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeName(JSONObject paramsObj) public static String getTreeName(JSONObject paramsObj)

View File

@ -66,7 +66,7 @@ public abstract class AbstractQuartzJob implements Job
* *
* *
* @param context * @param context
* @param sysScheduleJob * @param sysJob
*/ */
protected void after(JobExecutionContext context, SysJob sysJob, Exception e) protected void after(JobExecutionContext context, SysJob sysJob, Exception e)
{ {

View File

@ -52,7 +52,7 @@ public interface SysMenuMapper
/** /**
* ID * ID
* *
* @param username ID * @param userId ID
* @return * @return
*/ */
public List<SysMenu> selectMenuTreeByUserId(Long userId); public List<SysMenu> selectMenuTreeByUserId(Long userId);