修复参数注释

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
*
*
* @author ruoyi
**/
@SuppressWarnings(value = { "unchecked", "rawtypes" })
@ -109,7 +109,7 @@ public class RedisCache
* List
*
* @param key
* @param values List
* @param dataList List
* @return
*/
public <T> long setCacheList(final String key, final List<T> dataList)
@ -216,7 +216,7 @@ public class RedisCache
/**
*
*
*
* @param pattern
* @return
*/

View File

@ -15,7 +15,7 @@ import com.ruoyi.common.utils.uuid.IdUtils;
/**
*
*
*
* @author ruoyi
*/
public class FileUploadUtils
@ -89,7 +89,7 @@ public class FileUploadUtils
*
* @param baseDir
* @param file
* @param extension
* @param allowedExtension
* @return
* @throws FileSizeLimitExceededException
* @throws FileNameLengthLimitExceededException
@ -215,7 +215,7 @@ public class FileUploadUtils
/**
*
*
*
* @param file
* @return
*/
@ -228,4 +228,4 @@ public class FileUploadUtils
}
return extension;
}
}
}

View File

@ -20,7 +20,7 @@ import com.ruoyi.framework.web.service.TokenService;
/**
*
*
*
* @author ruoyi
*/
@Aspect
@ -93,10 +93,10 @@ public class DataScopeAspect
/**
*
*
*
* @param joinPoint
* @param user
* @param alias
* @param 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
*/
@Component
@ -46,8 +46,8 @@ public abstract class RepeatSubmitInterceptor extends HandlerInterceptorAdapter
/**
*
*
* @param httpServletRequest
*
* @param request
* @return
* @throws Exception
*/

View File

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

View File

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

View File

@ -66,7 +66,7 @@ public abstract class AbstractQuartzJob implements Job
*
*
* @param context
* @param sysScheduleJob
* @param sysJob
*/
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
*/
public interface SysMenuMapper
{
/**
*
*
*
* @param menu
* @return
*/
@ -21,14 +21,14 @@ public interface SysMenuMapper
/**
*
*
*
* @return
*/
public List<String> selectMenuPerms();
/**
*
*
*
* @param menu
* @return
*/
@ -36,7 +36,7 @@ public interface SysMenuMapper
/**
* ID
*
*
* @param userId ID
* @return
*/
@ -44,22 +44,22 @@ public interface SysMenuMapper
/**
* ID
*
*
* @return
*/
public List<SysMenu> selectMenuTreeAll();
/**
* ID
*
* @param username ID
*
* @param userId ID
* @return
*/
public List<SysMenu> selectMenuTreeByUserId(Long userId);
/**
* ID
*
*
* @param roleId ID
* @return
*/
@ -67,7 +67,7 @@ public interface SysMenuMapper
/**
* ID
*
*
* @param menuId ID
* @return
*/
@ -75,7 +75,7 @@ public interface SysMenuMapper
/**
*
*
*
* @param menuId ID
* @return
*/
@ -83,7 +83,7 @@ public interface SysMenuMapper
/**
*
*
*
* @param menu
* @return
*/
@ -91,7 +91,7 @@ public interface SysMenuMapper
/**
*
*
*
* @param menu
* @return
*/
@ -99,7 +99,7 @@ public interface SysMenuMapper
/**
*
*
*
* @param menuId ID
* @return
*/
@ -107,7 +107,7 @@ public interface SysMenuMapper
/**
*
*
*
* @param menuName
* @param parentId ID
* @return