修复参数注释

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

@ -13,7 +13,7 @@ import org.springframework.stereotype.Component;
/** /**
* spring redis * spring redis
* *
* @author ruoyi * @author ruoyi
**/ **/
@SuppressWarnings(value = { "unchecked", "rawtypes" }) @SuppressWarnings(value = { "unchecked", "rawtypes" })
@ -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)
@ -216,7 +216,7 @@ public class RedisCache
/** /**
* *
* *
* @param pattern * @param pattern
* @return * @return
*/ */

View File

@ -15,7 +15,7 @@ import com.ruoyi.common.utils.uuid.IdUtils;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */
public class FileUploadUtils public class FileUploadUtils
@ -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
@ -215,7 +215,7 @@ public class FileUploadUtils
/** /**
* *
* *
* @param file * @param file
* @return * @return
*/ */
@ -228,4 +228,4 @@ public class FileUploadUtils
} }
return extension; return extension;
} }
} }

View File

@ -20,7 +20,7 @@ import com.ruoyi.framework.web.service.TokenService;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */
@Aspect @Aspect
@ -93,10 +93,10 @@ 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

@ -13,7 +13,7 @@ import com.ruoyi.common.utils.ServletUtils;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */
@Component @Component
@ -46,8 +46,8 @@ public abstract class RepeatSubmitInterceptor extends HandlerInterceptorAdapter
/** /**
* *
* *
* @param httpServletRequest * @param request
* @return * @return
* @throws Exception * @throws Exception
*/ */

View File

@ -22,7 +22,7 @@ import io.jsonwebtoken.SignatureAlgorithm;
/** /**
* token * token
* *
* @author ruoyi * @author ruoyi
*/ */
@Component @Component
@ -51,7 +51,7 @@ public class TokenService
/** /**
* *
* *
* @return * @return
*/ */
public LoginUser getLoginUser(HttpServletRequest request) public LoginUser getLoginUser(HttpServletRequest request)
@ -95,7 +95,7 @@ public class TokenService
/** /**
* *
* *
* @param loginUser * @param loginUser
* @return * @return
*/ */
@ -113,8 +113,8 @@ public class TokenService
/** /**
* 20 * 20
* *
* @param token * @param loginUser
* @return * @return
*/ */
public void verifyToken(LoginUser loginUser) public void verifyToken(LoginUser loginUser)
@ -129,7 +129,7 @@ public class TokenService
/** /**
* *
* *
* @param loginUser * @param loginUser
*/ */
public void refreshToken(LoginUser loginUser) public void refreshToken(LoginUser loginUser)
@ -140,10 +140,10 @@ public class TokenService
String userKey = getTokenKey(loginUser.getToken()); String userKey = getTokenKey(loginUser.getToken());
redisCache.setCacheObject(userKey, loginUser, expireTime, TimeUnit.MINUTES); redisCache.setCacheObject(userKey, loginUser, expireTime, TimeUnit.MINUTES);
} }
/** /**
* *
* *
* @param loginUser * @param loginUser
*/ */
public void setUserAgent(LoginUser loginUser) public void setUserAgent(LoginUser loginUser)
@ -155,7 +155,7 @@ public class TokenService
loginUser.setBrowser(userAgent.getBrowser().getName()); loginUser.setBrowser(userAgent.getBrowser().getName());
loginUser.setOs(userAgent.getOperatingSystem().getName()); loginUser.setOs(userAgent.getOperatingSystem().getName());
} }
/** /**
* *
* *

View File

@ -24,7 +24,7 @@ public class VelocityUtils
/** /**
* *
* *
* @return * @return
*/ */
public static VelocityContext prepareContext(GenTable genTable) public static VelocityContext prepareContext(GenTable genTable)
@ -93,7 +93,7 @@ public class VelocityUtils
/** /**
* *
* *
* @return * @return
*/ */
public static List<String> getTemplateList(String tplCategory) public static List<String> getTemplateList(String tplCategory)
@ -183,7 +183,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param packageName * @param packageName
* @return * @return
*/ */
@ -196,8 +196,8 @@ 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)
@ -220,7 +220,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param moduleName * @param moduleName
* @param businessName * @param businessName
* @return * @return
@ -233,8 +233,8 @@ 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)
@ -248,8 +248,8 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreecode(JSONObject paramsObj) public static String getTreecode(JSONObject paramsObj)
@ -263,8 +263,8 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeParentCode(JSONObject paramsObj) public static String getTreeParentCode(JSONObject paramsObj)
@ -278,8 +278,8 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeName(JSONObject paramsObj) public static String getTreeName(JSONObject paramsObj)
@ -293,7 +293,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param genTable * @param genTable
* @return * @return
*/ */
@ -317,4 +317,4 @@ public class VelocityUtils
} }
return num; return num;
} }
} }

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

@ -6,14 +6,14 @@ import com.ruoyi.common.core.domain.entity.SysMenu;
/** /**
* *
* *
* @author ruoyi * @author ruoyi
*/ */
public interface SysMenuMapper public interface SysMenuMapper
{ {
/** /**
* *
* *
* @param menu * @param menu
* @return * @return
*/ */
@ -21,14 +21,14 @@ public interface SysMenuMapper
/** /**
* *
* *
* @return * @return
*/ */
public List<String> selectMenuPerms(); public List<String> selectMenuPerms();
/** /**
* *
* *
* @param menu * @param menu
* @return * @return
*/ */
@ -36,7 +36,7 @@ public interface SysMenuMapper
/** /**
* ID * ID
* *
* @param userId ID * @param userId ID
* @return * @return
*/ */
@ -44,22 +44,22 @@ public interface SysMenuMapper
/** /**
* ID * ID
* *
* @return * @return
*/ */
public List<SysMenu> selectMenuTreeAll(); public List<SysMenu> selectMenuTreeAll();
/** /**
* ID * ID
* *
* @param username ID * @param userId ID
* @return * @return
*/ */
public List<SysMenu> selectMenuTreeByUserId(Long userId); public List<SysMenu> selectMenuTreeByUserId(Long userId);
/** /**
* ID * ID
* *
* @param roleId ID * @param roleId ID
* @return * @return
*/ */
@ -67,7 +67,7 @@ public interface SysMenuMapper
/** /**
* ID * ID
* *
* @param menuId ID * @param menuId ID
* @return * @return
*/ */
@ -75,7 +75,7 @@ public interface SysMenuMapper
/** /**
* *
* *
* @param menuId ID * @param menuId ID
* @return * @return
*/ */
@ -83,7 +83,7 @@ public interface SysMenuMapper
/** /**
* *
* *
* @param menu * @param menu
* @return * @return
*/ */
@ -91,7 +91,7 @@ public interface SysMenuMapper
/** /**
* *
* *
* @param menu * @param menu
* @return * @return
*/ */
@ -99,7 +99,7 @@ public interface SysMenuMapper
/** /**
* *
* *
* @param menuId ID * @param menuId ID
* @return * @return
*/ */
@ -107,7 +107,7 @@ public interface SysMenuMapper
/** /**
* *
* *
* @param menuName * @param menuName
* @param parentId ID * @param parentId ID
* @return * @return