jiangping
2025-04-07 c25eabb1f91a05d35f3d56e1c27eb58ca6d60510
1
2
3
4
5
6
7
8
9
10
11
12
package com.doumee.config.annotation;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface UserLoginRequired {
 
}