Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

涂亚平 / lida

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • lida
  • ..
  • annotate
  • LoginRequired.java
  • 涂亚平's avatar
    加密解密加盐工具类 · e7c840d4
    涂亚平 committed May 07, 2025
    e7c840d4 Browse Directory
LoginRequired.java 316 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.zhongzhi.common.annotate;

import java.lang.annotation.*;

/**
 * <p>
 * 自定义验证登陆注解
 * </p>
 *
 * @author DengMin
 * @since 2020/12/18
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface LoginRequired {

    String[] value();

}