doc(common-core): 注释修改

This commit is contained in:
郝先瑞 2022-06-02 23:46:31 +08:00
parent a679b6fdd9
commit 953b122c59
7 changed files with 7 additions and 6 deletions

View File

@ -137,6 +137,7 @@ public class SysMenuServiceImpl extends ServiceImpl<SysMenuMapper, SysMenu> impl
meta.setRoles(menu.getRoles()); meta.setRoles(menu.getRoles());
meta.setHidden(!GlobalConstants.STATUS_YES.equals(menu.getVisible())); meta.setHidden(!GlobalConstants.STATUS_YES.equals(menu.getVisible()));
meta.setKeepAlive(true); meta.setKeepAlive(true);
meta.setAlwaysShow(true);
routeVO.setMeta(meta); routeVO.setMeta(meta);
List<RouteVO> children = recurRoutes(menu.getId(), menuList); List<RouteVO> children = recurRoutes(menu.getId(), menuList);

View File

@ -9,7 +9,7 @@ import java.util.Objects;
/** /**
* 枚举通用接口 * 枚举通用接口
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2022/3/27 12:06 * @date 2022/3/27 12:06
*/ */
public interface IBaseEnum<T> { public interface IBaseEnum<T> {

View File

@ -3,7 +3,7 @@ package com.youlai.common.constant;
/** /**
* 全局常量 * 全局常量
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2021/10/30 9:32 * @date 2021/10/30 9:32
*/ */
public interface GlobalConstants { public interface GlobalConstants {

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* Canal 消息监听 * Canal 消息监听
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2021/11/4 23:59 * @date 2021/11/4 23:59
*/ */
@NoArgsConstructor @NoArgsConstructor

View File

@ -6,7 +6,7 @@ import lombok.Getter;
/** /**
* 认证身份标识枚举 * 认证身份标识枚举
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2021/10/4 * @date 2021/10/4
*/ */
public enum AuthenticationIdentityEnum implements IBaseEnum<String> { public enum AuthenticationIdentityEnum implements IBaseEnum<String> {

View File

@ -6,7 +6,7 @@ import java.util.concurrent.atomic.AtomicInteger;
/** /**
* 自定义 ThreadFactory 实现线程重命名 * 自定义 ThreadFactory 实现线程重命名
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2022/2/13 0:14 * @date 2022/2/13 0:14
*/ */
public class NamedThreadFactory implements ThreadFactory { public class NamedThreadFactory implements ThreadFactory {

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 分页响应结构体 * 分页响应结构体
* *
* @author <a href="mailto:xianrui0365@163.com">haoxr</a> * @author haoxr
* @date 2022/2/18 23:29 * @date 2022/2/18 23:29
*/ */
@Data @Data